swig/Examples/test-suite/python/kwargs_runme.py
Marcelo Matus 6880fb6b15 added kwargs.i test
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6358 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-10-07 18:56:17 +00:00

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