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

8 lines
121 B
OpenEdge ABL

%module xxx
%pythoncode %{
def foo():
a = 1 # This line starts with a tab instead of 8 spaces.
return 2
%}