mirror of https://github.com/swig/swig
35 lines
674 B
Python
35 lines
674 B
Python
import _callback
|
|
from callback import *
|
|
|
|
# callbacks are implemented by modifying docstrings, useful for debugging:
|
|
# print("A.bar doc: {}".format(A.bar.__doc__))
|
|
|
|
if foo(2) != 2:
|
|
raise RuntimeError
|
|
|
|
if A.bar(2) != 4:
|
|
raise RuntimeError
|
|
|
|
if foobar(3, _callback.foo) != foo(3):
|
|
raise RuntimeError
|
|
|
|
if foobar(3, foo) != foo(3):
|
|
raise RuntimeError
|
|
|
|
if foobar(3, A.bar) != A.bar(3):
|
|
raise RuntimeError
|
|
|
|
if foobar(3, foof) != foof(3):
|
|
raise RuntimeError
|
|
|
|
if foobar_i(3, foo_i) != foo_i(3):
|
|
raise RuntimeError
|
|
|
|
|
|
if foobar_d(3.5, foo_d) != foo_d(3.5):
|
|
raise RuntimeError
|
|
|
|
a = A()
|
|
if foobarm(3, a, A.foom_cb_ptr) != a.foom(3):
|
|
raise RuntimeError
|