Files
ANSLibs/swig-4.3.0/Examples/test-suite/python/import_nomodule_runme.py

14 lines
249 B
Python
Raw Normal View History

from import_nomodule import *
# This test is expected to fail with -builtin option.
# The base class is needed for the builtin class hierarchy
if is_python_builtin():
exit(0)
f = create_Foo()
test1(f, 42)
delete_Foo(f)
b = Bar()
test1(b, 37)