[issue1692] Syntax Error exception dosen't print string; not informative

2008-01-04 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r59729 -- assignee: gvanrossum -> kbk resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue1692] Syntax Error exception dosen't print string; not informative

2008-01-04 Thread Guido van Rossum
Guido van Rossum added the comment: Yup, thanks! Can you submit it and close this? __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list U

[issue1692] Syntax Error exception dosen't print string; not informative

2008-01-04 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: This short patch appears to fix the problem, please review. -- keywords: +patch Added file: http://bugs.python.org/file9069/pythonrun.c.patch __ Tracker <[EMAIL PROTECTED]> _

[issue1692] Syntax Error exception dosen't print string; not informative

2008-01-02 Thread Guido van Rossum
Guido van Rossum added the comment: Yup. Same if the exception comes in a file. I'll try to free up some cycles to look into this. Thanks for the report! -- assignee: -> gvanrossum nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]>

[issue1692] Syntax Error exception dosen't print string; not informative

2008-01-01 Thread Christian Heimes
Changes by Christian Heimes: -- components: +Interpreter Core keywords: +py3k priority: -> high __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bu

[issue1692] Syntax Error exception dosen't print string; not informative

2007-12-31 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser: -- nosy: +kbk __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue1692] Syntax Error exception dosen't print string; not informative

2007-12-23 Thread Isaul Vargas
New submission from Isaul Vargas: Python 3.0 doesn't print the string with the carat underneath when there is a syntax error. >>> if x SyntaxError: invalid syntax (, line1) >>> if (x=5): SyntaxError: invalid syntax (, line 1) Python 2.x behavior: >>> if (x=5): pass File "", line 1 if (x