From 92812028f2748a16ddecb64a97851d0d9a74630e Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Mon, 20 Dec 2010 19:04:51 +0000 Subject: [PATCH] Revert incorrect patch made at the wrong time. --- Lib/test/test_compileall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index f8b4e46f1f9..3f333a58dbf 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):