somewhat incomplete test for cdef kwargs, but here it is
authorStefan Behnel <scoder@users.berlios.de>
Sat, 16 Aug 2008 11:54:11 +0000 (13:54 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 16 Aug 2008 11:54:11 +0000 (13:54 +0200)
tests/run/cdefkwargs.pyx [new file with mode: 0644]

diff --git a/tests/run/cdefkwargs.pyx b/tests/run/cdefkwargs.pyx
new file mode 100644 (file)
index 0000000..366a18d
--- /dev/null
@@ -0,0 +1,21 @@
+__doc__ = u"""
+    >>> call2()
+    >>> call3()
+    >>> call4()
+"""
+
+# the calls:
+
+def call2():
+    b(1,2)
+
+def call3():
+    b(1,2,3)
+
+def call4():
+    b(1,2,3,4)
+
+# the called function:
+
+cdef b(a, b, c=1, d=2):
+    pass