[issue2725] Handle ASDLSyntaxErrors gracefully

2009-04-12 Thread Georg Brandl
Georg Brandl added the comment: Committed a similar patch in r71505. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue2725] Handle ASDLSyntaxErrors gracefully

2009-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue2725] Handle ASDLSyntaxErrors gracefully

2008-04-30 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Some comments: - Since you check for a false mod before calling check(), the check in check() will not be reached. - The error print seems to be already in trunk. -- nosy: +georg.brandl __ Tracker <[EMAI

[issue2725] Handle ASDLSyntaxErrors gracefully

2008-04-30 Thread Thomas Lee
New submission from Thomas Lee <[EMAIL PROTECTED]>: The current code in Parser/asdl.py doesn't handle syntax errors very well. A minor problem to be sure, since the net result is the same (i.e. build fails), but the error message being displayed is entirely unhelpful to the developer. The attach