This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients georg.brandl, vstinner
Date 2012-09-18.20:57:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1348001825.94.0.454810241369.issue15969@psf.upfronthosting.co.za>
In-reply-to
Content
If it is not too late, I would like to "fix" the name of two functions of the new faulthandler module before the release of Python 3.3 final. Changes:

 * dump_tracebacks_later() => dump_traceback_later()
 * cancel_dump_tracebacks_later() => cancel_dump_traceback_later()

The module has also a function dump_traceback() without S.

In an early version of the module (before it was integrated in Python 3.3), these functions only dumped the current thread. They are now dumping all threads by default, and I don't see the point of having an S anyway.

@Georg: Would you accept such change? The module is new in Python 3.3, and it is only a debug module, I don't expect anyone relying on its API right now.
History
Date User Action Args
2012-09-18 20:57:06vstinnersetrecipients: + vstinner, georg.brandl
2012-09-18 20:57:05vstinnersetmessageid: <1348001825.94.0.454810241369.issue15969@psf.upfronthosting.co.za>
2012-09-18 20:57:05vstinnerlinkissue15969 messages
2012-09-18 20:57:04vstinnercreate