
python-checkins at python
May 18, 2012, 6:34 AM
Post #1 of 1
(29 views)
Permalink
|
|
cpython (3.2): Drop double quoting again. I'm at a loss when to quote and when not.
|
|
http://hg.python.org/cpython/rev/26818230822a changeset: 77030:26818230822a branch: 3.2 user: Martin v. Löwis <martin [at] v> date: Fri May 18 15:28:43 2012 +0200 summary: Drop double quoting again. I'm at a loss when to quote and when not. files: PCbuild/build_ssl.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -46,7 +46,7 @@ # is available. def find_working_perl(perls): for perl in perls: - fh = os.popen('""%s" -e "use Win32;""' % perl) + fh = os.popen('"%s" -e "use Win32;"' % perl) fh.read() rc = fh.close() if rc: -- Repository URL: http://hg.python.org/cpython
|