Commit ccb9523a authored by Reinout van Rees's avatar Reinout van Rees

Merge pull request #270 from agroszer/master

fix for win32 '#!"python"' vs '#!python' shebang
parents cc9cc8a2 aedc9d0b
......@@ -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