swig/Examples/test-suite/errors/swig_pythoncode_bad2.i

14 lines
156 B
OpenEdge ABL

%module xxx
%pythoncode %{
def one():
print "in one"
%}
%pythoncode %{
print "still in one"
def two():
print "in two"
%}