summaryrefslogtreecommitdiff
path: root/Lib/test/test_compileall.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-20 19:04:51 +0000
committerR. David Murray <rdmurray@bitdance.com>2010-12-20 19:04:51 +0000
commit92812028f2748a16ddecb64a97851d0d9a74630e (patch)
treed16bdc4068a1b0b8337d29b5556c40999cb16eb9 /Lib/test/test_compileall.py
parentbf9004483d20b7d17ea589851337a2207e786fb8 (diff)
downloadcpython-git-92812028f2748a16ddecb64a97851d0d9a74630e.tar.gz
Revert incorrect patch made at the wrong time.
Diffstat (limited to 'Lib/test/test_compileall.py')
-rw-r--r--Lib/test/test_compileall.py2
1 files changed, 1 insertions, 1 deletions
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):