New submission from Alex <malicious.wiz...@gmail.com>:

Builtin SyntaxError formatter does never point to char before last in wrong 
source line. traceback.format_exception() is not affected.

*** Example:
>>> raise SyntaxError('', ('', 0, 3, 'hello'))
...
    hello
      ^
SyntaxError: test
>>> raise SyntaxError('', ('', 0, 4, 'hello'))
...
    hello
       ^
SyntaxError: test
>>> raise SyntaxError('', ('', 0, 5, 'hello'))
...
    hello   # <-- note that it's not "o"
       ^
SyntaxError: test
>>> raise SyntaxError('', ('', 0, 6, 'hello'))
...
    hello
         ^
SyntaxError: test

----------
components: Interpreter Core
messages: 119479
nosy: mwizard
priority: normal
severity: normal
status: open
title: Invalid SyntaxError pointer offset
versions: Python 2.7

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10186>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to