diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-18 01:19:28 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2001-04-18 01:19:28 (GMT) |
commit | 3090694068670371cdbd5b1a3d3c5dbecc83835a (patch) | |
tree | dda4e675551edb2b0c07bd3e7f7d9c48d9ef7433 /Lib/test/test_traceback.py | |
parent | bc41957d2b58dfaae24e8a996e3e7c4fe3b475dd (diff) | |
download | cpython-3090694068670371cdbd5b1a3d3c5dbecc83835a.zip cpython-3090694068670371cdbd5b1a3d3c5dbecc83835a.tar.gz cpython-3090694068670371cdbd5b1a3d3c5dbecc83835a.tar.bz2 |
Fix compileall.py so that it fails on SyntaxErrors
The changes cause compilation failures in any file in the Python
installation lib directory to cause the install to fail. It looks
like compileall.py intended to behave this way, but a change to
py_compile.py and a separate bug defeated it.
Fixes SF bug #412436
This change affects the test suite, which contains several files that
contain intentional errors. The solution is to extend compileall.py
with the ability to skip compilation of selected files.
In the test suite, rename nocaret.py and test_future[3..7].py to start
with badsyntax_nocaret.py and badsyntax_future[3..7].py. Update the
makefile to skip compilation of these files. Update the tests to use
the name names for imports.
NB compileall.py is changed so that compile_dir() returns success only
if all recursive calls to compile_dir() also check success.
Diffstat (limited to 'Lib/test/test_traceback.py')
-rw-r--r-- | Lib/test/test_traceback.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_traceback.py b/Lib/test/test_traceback.py index 759cc98..9f818e1 100644 --- a/Lib/test/test_traceback.py +++ b/Lib/test/test_traceback.py @@ -22,7 +22,7 @@ class TracebackCases(unittest.TestCase): def syntax_error_without_caret(self): # XXX why doesn't compile raise the same traceback? - import nocaret + import badsyntax_nocaret def test_caret(self): err = self.get_exception_format(self.syntax_error_with_caret, |