[issue20235] Argument Clinic: recover a bit more gracefully from exceptions

2014-01-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset acd31653e3b4 by Georg Brandl in branch 'default': Closes #20235: Report file and line on unexpected exceptions in Argument Clinic. http://hg.python.org/cpython/rev/acd31653e3b4 -- nosy: +python-dev resolution: -> fixed stage: commit review

[issue20235] Argument Clinic: recover a bit more gracefully from exceptions

2014-01-15 Thread Larry Hastings
Larry Hastings added the comment: LGTM, please commit. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue20235] Argument Clinic: recover a bit more gracefully from exceptions

2014-01-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. This patch helps me (issue20273). Thank you. -- components: +Demos and Tools stage: -> commit review type: -> enhancement versions: +Python 3.4 ___ Python tracker ___

[issue20235] Argument Clinic: recover a bit more gracefully from exceptions

2014-01-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20235] Argument Clinic: recover a bit more gracefully from exceptions

2014-01-12 Thread Georg Brandl
New submission from Georg Brandl: I had specified c_default=-1 (note missing quotes) somewhere, and it raises an exception during the clinic --make run; there was no indication which file/line this was on. Suggested patch attached. -- assignee: larry files: clinic_exception_reporting.