diff options
| author | Philip Thiem <ptthiem@gmail.com> | 2013-02-16 11:34:11 -0600 |
|---|---|---|
| committer | Philip Thiem <ptthiem@gmail.com> | 2013-02-16 11:34:11 -0600 |
| commit | 6f6de308e3ade9a262308297f0a96af261c9dde5 (patch) | |
| tree | f473feb90ac264b1804437b6905b315b185130ec /setuptools | |
| parent | 4e2823bc3f2f5505ee15fc72ebcc287e5061199d (diff) | |
| download | python-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.txt | 6 |
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 ----------------------- |
