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 dmalcolm, joshbressers, pitrou, vstinner
Date 2010-10-13.21:43:48
SpamBayes Score 0.00046122062
Marked as misclassified No
Message-id <1287006233.31.0.481959441813.issue8863@psf.upfronthosting.co.za>
In-reply-to
Content
Version 6:
 - don't use fputc(), fputs(), fprintf() or fflush() on stderr: use write() on file descriptor 2 (should be stderr)
 - write tests: add sigsegv(), sigfpe() and fatal_error() functions to the _testcapi module

I was too lazy to reimplement functions to convert an integer to a string in bases 10 and 16, so I used snprintf() on a small buffer allocated on the stack.
History
Date User Action Args
2010-10-13 21:43:53vstinnersetrecipients: + vstinner, pitrou, dmalcolm, joshbressers
2010-10-13 21:43:53vstinnersetmessageid: <1287006233.31.0.481959441813.issue8863@psf.upfronthosting.co.za>
2010-10-13 21:43:51vstinnerlinkissue8863 messages
2010-10-13 21:43:51vstinnercreate