diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-12-20 19:04:51 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-12-20 19:04:51 (GMT) |
commit | 92812028f2748a16ddecb64a97851d0d9a74630e (patch) | |
tree | d16bdc4068a1b0b8337d29b5556c40999cb16eb9 /Lib/test/test_compileall.py | |
parent | bf9004483d20b7d17ea589851337a2207e786fb8 (diff) | |
download | cpython-92812028f2748a16ddecb64a97851d0d9a74630e.zip cpython-92812028f2748a16ddecb64a97851d0d9a74630e.tar.gz cpython-92812028f2748a16ddecb64a97851d0d9a74630e.tar.bz2 |
Revert incorrect patch made at the wrong time.
Diffstat (limited to 'Lib/test/test_compileall.py')
-rw-r--r-- | Lib/test/test_compileall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_compileall.py b/Lib/test/test_compileall.py index f8b4e46..3f333a5 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): |