[Python-checkins] r87411 - python/branches/py3k/Lib/test/test_compileall.py

r.david.murray python-checkins at python.org
Mon Dec 20 20:04:51 CET 2010


Author: r.david.murray
Date: Mon Dec 20 20:04:51 2010
New Revision: 87411

Log:
Revert incorrect patch made at the wrong time.


Modified:
   python/branches/py3k/Lib/test/test_compileall.py

Modified: python/branches/py3k/Lib/test/test_compileall.py
==============================================================================
--- python/branches/py3k/Lib/test/test_compileall.py	(original)
+++ python/branches/py3k/Lib/test/test_compileall.py	Mon Dec 20 20:04:51 2010
@@ -132,7 +132,7 @@
 
     def assertRunNotOK(self, *args, **env_vars):
         rc, out, err = script_helper.assert_python_failure(
-                         '-S', '-m', 'compileall', *args, **env_vars)
+                         '-m', 'compileall', *args, **env_vars)
         return rc, out, err
 
     def assertCompiled(self, fn):


More information about the Python-checkins mailing list