summaryrefslogtreecommitdiff
path: root/Examples/test-suite/errors/swig_pythoncode_bad3.i
blob: 5759158d9630e34b97900f5bc794bdf3e00d92d7 (plain)
1
2
3
4
5
6
7
%module xxx

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