git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6358 626c5289-ae23-0410-ae9c-e8d60b6d4f22
7 lines
112 B
Python
7 lines
112 B
Python
import kwargs
|
|
|
|
if kwargs.foo(a=1,b=2) != 3:
|
|
raise RuntimeError
|
|
|
|
if kwargs.foo(b=2) != 3:
|
|
raise RuntimeError
|