]> granicus.if.org Git - python/commitdiff
Merged revisions 85814 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Sun, 24 Oct 2010 02:57:31 +0000 (02:57 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 24 Oct 2010 02:57:31 +0000 (02:57 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85814 | benjamin.peterson | 2010-10-23 21:52:05 -0500 (Sat, 23 Oct 2010) | 1 line

  remove broken code accounting an offset the size of the line #10186
........

Lib/test/test_traceback.py
Misc/NEWS
Python/pythonrun.c

index 17413db7f9e1e0ab4cad1461a0787a113e8284de..d39322f2d9d4a917b159c2b5464ae36709156fc3 100644 (file)
@@ -296,6 +296,12 @@ class BaseExceptionReportingTests:
         self.assertTrue('inner_raise() # Marker' in blocks[2])
         self.check_zero_div(blocks[2])
 
+    def test_syntax_error_offset_at_eol(self):
+        # See #10186.
+        def e():
+            raise SyntaxError('', ('', 0, 5, 'hello'))
+        msg = self.get_report(e).splitlines()
+        self.assertEqual(msg[-2], "        ^")
 
 
 class PyExcReportingTests(BaseExceptionReportingTests, unittest.TestCase):
index e2c424c25dedaf07fd1475a329415a17cc046437..c505aee03253abc2b14690c1cb4855a36bfc73ba 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ Core and Builtins
 
 - Issue #10077: Fix logging of site module errors at startup.
 
+- Issue #10186: Fix the SyntaxError caret when the offset is equal to the length
+  of the offending line.
+
 - Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects
   filenames encoded to the filesystem encoding with surrogateescape error
   handler (to support undecodable bytes), instead of UTF-8 in strict mode.
index 98cad37799f95bde5a5a2cd030320b0fdcedf7ae..10a1d504a0807317d0299d394e7bcaf15cf4753a 100644 (file)
@@ -1299,8 +1299,6 @@ print_error_text(PyObject *f, int offset, const char *text)
 {
     char *nl;
     if (offset >= 0) {
-        if (offset > 0 && offset == (int)strlen(text))
-            offset--;
         for (;;) {
             nl = strchr(text, '\n');
             if (nl == NULL || nl-text >= offset)