Improve handling of whitespace in %pythoncode

Previously SWIG looked at the indentation of the first line and removed
that many characters from each subsequent line, regardless of what those
characters were.  This was made worse because SWIG's preprocessor removes
any whitespace before a '#'.  Fixes github issue #379, reported by Joe
Orton.
This commit is contained in:
Olly Betts 2015-06-03 12:25:03 +12:00
commit 822b2355c0
10 changed files with 173 additions and 48 deletions

View file

@ -0,0 +1,5 @@
import python_pythoncode
# No need to actually do anything, this is a regression test for a bug which
# caused an invalid python_pythoncode.py to be generated, so if we can import
# it the bug is still fixed.