Message206246
| Author |
pitrou |
| Recipients |
Jurko.Gospodnetić, brian.curtin, pitrou, tim.golden, tim.peters, vstinner |
| Date |
2013年12月15日.17:37:40 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1387129060.96.0.0141436137456.issue19983@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Ah, ok. So it's a controlled crash: Python fails initializing the standard streams and so it decides to bail out (by using Py_FatalError, since Py_Initialize doesn't return an error code).
What we could do is call initsigs() after initstdio() (but still before initsite(), since initsite() can call arbitrary Python code).
I'm a bit surprised that you manage to press Ctrl-C so fast that it occurs right during initialization of standard streams, by the way :-) |
|