/tags/rel-1-3-25/SWIG/Examples/test-suite/python/typename_runme.py
# · Python · 12 lines · 10 code · 2 blank · 0 comment · 2 complexity · dcb251fb749b7cc2d2d57ec904d6572c MD5 · raw file
- import typename
- import types
- f = typename.Foo()
- b = typename.Bar()
- x = typename.twoFoo(f)
- if not isinstance(x,types.FloatType):
- print "Wrong return type!"
- y = typename.twoBar(b)
- if not isinstance(y,types.IntType):
- print "Wrong return type!"