Commit 4bdb3cf4 authored by Stefan Behnel's avatar Stefan Behnel

test if kwargs work in wrapped C functions

parent 0db9805a
...@@ -59,6 +59,8 @@ def call_abc(a, b, c): ...@@ -59,6 +59,8 @@ def call_abc(a, b, c):
True True
>>> call_abc(2, 3**10 * 109, 23**5) >>> call_abc(2, 3**10 * 109, 23**5)
True True
>>> call_abc(a=2, b=3**10 * 109, c=23**5)
True
>>> call_abc(1, 1, 1) >>> call_abc(1, 1, 1)
Traceback (most recent call last): Traceback (most recent call last):
... ...
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment