From: R. David Murray Date: Mon, 20 Dec 2010 19:04:51 +0000 (+0000) Subject: Revert incorrect patch made at the wrong time. X-Git-Tag: v3.2rc1~389 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=92812028f2748a16ddecb64a97851d0d9a74630e;p=python Revert incorrect patch made at the wrong time. --- diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index f8b4e46f1f..3f333a58db 100644 --- a/Lib/test/test_compileall.py +++ b/Lib/test/test_compileall.py @@ -132,7 +132,7 @@ class CommandLineTests(unittest.TestCase): 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):