swig/Examples/test-suite/python/complextest_runme.py
Marcelo Matus 7e25ede10d more tests
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5784 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2004-03-21 23:38:59 +00:00

14 lines
220 B
Python

import complextest
a = complex(1,2)
if complextest.Conj(a) != a.conjugate():
raise RuntimeError, "bad complex mapping"
v = (complex(1,2), complex(2,3), complex(4,3), 1)
try:
complextest.Copy_h(v)
except:
pass