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 Arfrever, dmalcolm, pitrou, vstinner
Date 2011-03-22.02:40:23
SpamBayes Score 0.00013369198
Marked as misclassified No
Message-id <1300761624.37.0.463256032765.issue11393@psf.upfronthosting.co.za>
In-reply-to
Content
I renamed some functions to conform to the PEP 8 (and have more readable function names). I prefer to do it today instead having to keep ugly names for years :-)

Functions are now:

 * enable(file=sys.stderr, all_threads=False)
 * disable()
 * is_enabled()

 * dump_backtrace(file=sys.stderr, all_threads=False)
 * dump_backtrace_later(delay, repeat=False, file=sys.stderr, all_threads=False)
 * cancel_dump_backtrace_later()

 * register(signum, file=sys.stderr, all_threads=False)
 * unregister(signum)

 * sigbus()
 * sigfpe()
 * sigill()
 * sigsegv()

Refer to the README file for the details.
History
Date User Action Args
2011-03-22 02:40:24vstinnersetrecipients: + vstinner, pitrou, Arfrever, dmalcolm
2011-03-22 02:40:24vstinnersetmessageid: <1300761624.37.0.463256032765.issue11393@psf.upfronthosting.co.za>
2011-03-22 02:40:23vstinnerlinkissue11393 messages
2011-03-22 02:40:23vstinnercreate