Commit aedc9d0b authored by Adam Groszer's avatar Adam Groszer

fix for win32 '#!"python"' vs '#!python' shebang

parent cc9cc8a2
......@@ -3539,6 +3539,10 @@ def test_suite():
"Unused options for buildout: 'scripts' 'eggs'."),
# Python 3.4 changed the wording of NameErrors
(re.compile('NameError: global name'), 'NameError: name'),
# fix for test_distutils_scripts_using_import_are_properly_parsed
# and test_distutils_scripts_using_from_are_properly_parsed
# win32 apparently adds a " around sys.executable
(re.compile('#!"python"'), '#!python'),
]),
),
zc.buildout.rmtree.test_suite(),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment