[issue19390] clinic.py: unhandled syntax error

2013-10-27 Thread Larry Hastings
Larry Hastings added the comment: Fixed. And, yeah, Clinic actually uses ast.parse where it can. (FWIW, most of the parser was re-written by Dmitry Jemerov during the PyCon US 2013 sprints, though I wound up re-re-writing most of what he did.) -- assignee: -> larry resolution: -> f

[issue19390] clinic.py: unhandled syntax error

2013-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset b496ed363c2d by Larry Hastings in branch 'default': Issue #19390: Argument Clinic no longer accepts malformed Python and C ids. http://hg.python.org/cpython/rev/b496ed363c2d -- nosy: +python-dev ___ Pytho

[issue19390] clinic.py: unhandled syntax error

2013-10-25 Thread Stefan Krah
Stefan Krah added the comment: Larry Hastings wrote: > You're proposing that Clinic allow => ? No, but it should print an error message and exit. Currently it silently generates garbage which does not compile. [I've noticed that you handle many other syntax errors. Nice work.] -- ___

[issue19390] clinic.py: unhandled syntax error

2013-10-25 Thread Larry Hastings
Larry Hastings added the comment: You're proposing that Clinic allow => ? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue19390] clinic.py: unhandled syntax error

2013-10-25 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +larry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue19390] clinic.py: unhandled syntax error

2013-10-25 Thread Stefan Krah
New submission from Stefan Krah: The attached syntax error should probably be handled by clinic.py. -- components: Demos and Tools files: syntax-err-1.patch keywords: patch messages: 201246 nosy: skrah priority: normal severity: normal status: open title: clinic.py: unhandled syntax erro