git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
201 B
Python
13 lines
201 B
Python
import grouping
|
|
|
|
x = grouping.test1(42)
|
|
if x != 42:
|
|
raise RuntimeError
|
|
|
|
grouping.test2(42)
|
|
|
|
x = grouping.do_unary(37, grouping.NEGATE)
|
|
if x != -37:
|
|
raise RuntimeError
|
|
|
|
grouping.cvar.test3 = 42
|