summaryrefslogtreecommitdiff
path: root/setuptools
diff options
context:
space:
mode:
authorPhilip Thiem <ptthiem@gmail.com>2013-02-16 11:34:11 -0600
committerPhilip Thiem <ptthiem@gmail.com>2013-02-16 11:34:11 -0600
commit6f6de308e3ade9a262308297f0a96af261c9dde5 (patch)
treef473feb90ac264b1804437b6905b315b185130ec /setuptools
parent4e2823bc3f2f5505ee15fc72ebcc287e5061199d (diff)
downloadpython-setuptools-git-6f6de308e3ade9a262308297f0a96af261c9dde5.tar.gz
Backout the pkg_resources.py fix
--HG-- branch : distribute extra : rebase_source : d144d2afc763c9ed6420d32bad3015075d265226
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/tests/win_script_wrapper.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/setuptools/tests/win_script_wrapper.txt b/setuptools/tests/win_script_wrapper.txt
index 82719273..3dc725c8 100644
--- a/setuptools/tests/win_script_wrapper.txt
+++ b/setuptools/tests/win_script_wrapper.txt
@@ -54,11 +54,12 @@ the wrapper:
... + r' arg1 "arg 2" "arg \"2\\\"" "arg 4\\" "arg5 a\\b"')
>>> input.write('hello\nworld\n')
>>> input.close()
- >>> print(output.read(),)
+ >>> print(output.read())
\foo-script.py
['arg1', 'arg 2', 'arg "2\\"', 'arg 4\\', 'arg5 a\\\\b']
'hello\nworld\n'
non-optimized
+ <BLANKLINE>
This example was a little pathological in that it exercised windows
(MS C runtime) quoting rules:
@@ -97,11 +98,12 @@ enter the interpreter after running the script, you could use -Oi:
>>> input, output = os.popen4(nt_quote_arg(os.path.join(sample_directory, 'foo.exe')))
>>> input.close()
- >>> print(output.read(),)
+ >>> print(output.read())
\foo-script.py
[]
''
---
+ <BLANKLINE>
Testing the GUI Version
-----------------------