Commit 01f9deb4 authored by Reinout van Rees's avatar Reinout van Rees

Test demonstrating #65

parent 9e36ccbe
...@@ -943,6 +943,7 @@ like for the console_scripts: ...@@ -943,6 +943,7 @@ like for the console_scripts:
>>> cat(distbin, 'distutilsscript') >>> cat(distbin, 'distutilsscript')
#!/usr/local/bin/python2.7 #!/usr/local/bin/python2.7
# -*- coding: utf-8 -*-
<BLANKLINE> <BLANKLINE>
import sys import sys
sys.path[0:0] = [ sys.path[0:0] = [
......
...@@ -2899,6 +2899,7 @@ def create_sample_eggs(test, executable=sys.executable): ...@@ -2899,6 +2899,7 @@ def create_sample_eggs(test, executable=sys.executable):
write( write(
tmp, 'distutilsscript', tmp, 'distutilsscript',
'#!/usr/bin/python\n' '#!/usr/bin/python\n'
'# -*- coding: utf-8 -*-\n'
'import sys; sys.stdout.write("distutils!\\n")\n' 'import sys; sys.stdout.write("distutils!\\n")\n'
) )
write( write(
......
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