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 telmich
Recipients eric.araujo, neologix, pitrou, r.david.murray, telmich
Date 2012-03-22.15:31:33
SpamBayes Score 3.689108e-05
Marked as misclassified No
Message-id <1332430294.91.0.883112490054.issue14228@psf.upfronthosting.co.za>
In-reply-to
Content
I think setting up SIGINT after importing site is a good solution: It will kill the program as expected and as soon as the user takes over control, she can decide what todo.

In which stage/part is the python interpreter when
I guess/hope that the race condition between initsigs(); would have been moved downwards?

I'm asking, because if 'import site' is done, the maximum output seen that could occur is

KeyboardInterrupt


if there is no code around there. Which looks way more sane that what I see currently.
History
Date User Action Args
2012-03-22 15:31:34telmichsetrecipients: + telmich, pitrou, eric.araujo, r.david.murray, neologix
2012-03-22 15:31:34telmichsetmessageid: <1332430294.91.0.883112490054.issue14228@psf.upfronthosting.co.za>
2012-03-22 15:31:34telmichlinkissue14228 messages
2012-03-22 15:31:33telmichcreate