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 steve.dower
Recipients eryksun, paul.moore, steve.dower, tim.golden, vinay.sajip, wolma, zach.ware
Date 2015-12-04.14:12:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449238356.08.0.587807944126.issue25789@psf.upfronthosting.co.za>
In-reply-to
Content
ExitProcess is a system API and exit is the C runtime API. The C runtime is doing the buffering, so the system doesn't know about it and can't flush if you terminate through that API. The exit function should, or we could explicitly flush the buffer after writing to it.
History
Date User Action Args
2015-12-04 14:12:36steve.dowersetrecipients: + steve.dower, paul.moore, vinay.sajip, tim.golden, zach.ware, eryksun, wolma
2015-12-04 14:12:36steve.dowersetmessageid: <1449238356.08.0.587807944126.issue25789@psf.upfronthosting.co.za>
2015-12-04 14:12:36steve.dowerlinkissue25789 messages
2015-12-04 14:12:35steve.dowercreate