/tags/rel-1-3-15/SWIG/Examples/python/funcptr2/runme.py
Python | 20 lines | 13 code | 5 blank | 2 comment | 0 complexity | b15b05278ed6f1a95af4d7bd6ac18de8 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
1# file: example.py
2
3import example
4
5a = 37
6b = 42
7
8# Now call our C function with a bunch of callbacks
9
10print "Trying some C callback functions"
11print " a =", a
12print " b =", b
13print " ADD(a,b) =", example.do_op(a,b,example.ADD)
14print " SUB(a,b) =", example.do_op(a,b,example.SUB)
15print " MUL(a,b) =", example.do_op(a,b,example.MUL)
16
17print "Here is what the C callback function objects look like in Python"
18print " ADD =", example.ADD
19print " SUB =", example.SUB
20print " MUL =", example.MUL