issues.py 743 Bytes
Newer Older
1
2
3
4
5
#!/usr/bin/env python
from __future__ import print_function
import sys
sys.path.append('.')

6
from example.issues import print_cchar, print_char
7
from example.issues import DispatchIssue, dispatch_issue_go
8
from example.issues import Placeholder ,return_vec_of_reference_wrapper
9
10

print_cchar("const char *")
11
print_char('c')
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29


class PyClass1(DispatchIssue):
    def dispatch(self):
        print("Yay..")


class PyClass2(DispatchIssue):
    def dispatch(self):
        try:
            super(PyClass2, self).dispatch()
        except Exception as e:
            print("Failed as expected: " + str(e))
        p = PyClass1()
        dispatch_issue_go(p)

b = PyClass2()
dispatch_issue_go(b)
30

31
print(return_vec_of_reference_wrapper(Placeholder(4)))