Improve python code indentation warning / error messages

This commit is contained in:
William S Fulton 2015-07-29 18:57:09 +01:00
commit e69cc0c0f5
6 changed files with 55 additions and 23 deletions

View file

@ -0,0 +1,7 @@
%module xxx
%pythoncode %{
def extra():
print "extra a" # indentation is 2 spaces then tab
print "extra b" # indentation is tab then 2 spaces
%}