1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
%module python_pythoncode
// github issue#379 - these examples failed with 3.0.5 and earlier (at least as
// far back as 1.3.37):
struct TYPE {
%pythoncode %{
def one():
a = 1
# Comment XXXX
return a
%}
};
%define %bar
%pythoncode %{
def one():
a = 1
#
return a
%}
%enddef
struct TYPE2 {
%bar
};
%{
struct TYPE { };
struct TYPE2 { };
%}
// Overriding __new__ test: https://github.com/swig/swig/pull/1357
%inline %{
class Foo {
public:
virtual ~Foo() {}
Foo() {}
};
Foo* get_foo() {return new Foo();}
%}
%pythoncode %{
print_debug = False
%}
%extend Foo {
// Note that %pythoncode is not available with -builtin
%pythoncode %{
def __new__(cls, *args, **kwargs):
if print_debug:
print('in Foo.__new__()')
return super(Foo, cls).__new__(cls)
def __init__(self):
if print_debug:
print('in Foo.__init__()')
%}
};
|