Author: mattip <[email protected]>
Branch:
Changeset: r63414:f0d7998697a6
Date: 2013-04-16 19:17 +0300
http://bitbucket.org/pypy/pypy/changeset/f0d7998697a6/
Log: fix quotes for windows
diff --git a/pypy/module/test_lib_pypy/test_site_extra.py
b/pypy/module/test_lib_pypy/test_site_extra.py
--- a/pypy/module/test_lib_pypy/test_site_extra.py
+++ b/pypy/module/test_lib_pypy/test_site_extra.py
@@ -4,7 +4,7 @@
def test_preimported_modules():
lst = ['__builtin__', '_codecs', '_warnings', 'codecs', 'encodings',
'exceptions', 'signal', 'sys', 'zipimport']
- g = os.popen("'%s' -c 'import sys; print sorted(sys.modules)'" %
+ g = os.popen('"%s" -c "import sys; print sorted(sys.modules)"' %
(sys.executable,))
real_data = g.read()
g.close()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit