mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
traceback now shows error position for all SyntaxError subclasses,
e.g. IndentationError. (bug #1447885)
This commit is contained in:
parent
3bf538f13d
commit
51dbc4c879
2 changed files with 11 additions and 1 deletions
|
@ -23,6 +23,9 @@ class TracebackCases(unittest.TestCase):
|
|||
def syntax_error_without_caret(self):
|
||||
# XXX why doesn't compile raise the same traceback?
|
||||
import test.badsyntax_nocaret
|
||||
|
||||
def syntax_error_bad_indentation(self):
|
||||
compile("def spam():\n print 1\n print 2", "?", "exec")
|
||||
|
||||
def test_caret(self):
|
||||
err = self.get_exception_format(self.syntax_error_with_caret,
|
||||
|
@ -40,6 +43,13 @@ class TracebackCases(unittest.TestCase):
|
|||
self.assert_(len(err) == 3)
|
||||
self.assert_(err[1].strip() == "[x for x in x] = x")
|
||||
|
||||
def test_bad_indentation(self):
|
||||
err = self.get_exception_format(self.syntax_error_bad_indentation,
|
||||
IndentationError)
|
||||
self.assert_(len(err) == 4)
|
||||
self.assert_("^" in err[2])
|
||||
self.assert_(err[1].strip() == "print 2")
|
||||
|
||||
def test_bug737473(self):
|
||||
import sys, os, tempfile, time
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue