swig/Examples/test-suite/errors/swig_pythoncode_bad3.i
2015-07-30 08:26:17 +01:00

7 lines
154 B
OpenEdge ABL

%module xxx
%pythoncode %{
def extra():
print "extra a" # indentation is 2 spaces then tab
print "extra b" # indentation is tab then 2 spaces
%}