Message161114
| Author |
pitrou |
| Recipients |
pitrou, vstinner, zbysz |
| Date |
2012年05月19日.13:43:10 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1337434991.55.0.0911980228462.issue14854@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Here is a patch:
$ hg di
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -356,15 +356,15 @@ Py_InitializeEx(int install_sigs)
_PyImportHooks_Init();
- /* initialize the faulthandler module */
- if (_PyFaulthandler_Init())
- Py_FatalError("Py_Initialize: can't initialize faulthandler");
-
/* Initialize _warnings. */
_PyWarnings_Init();
import_init(interp, sysmod);
+ /* initialize the faulthandler module */
+ if (_PyFaulthandler_Init())
+ Py_FatalError("Py_Initialize: can't initialize faulthandler");
+
_PyTime_Init();
if (initfsencoding(interp) < 0) |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2012年05月19日 13:43:11 | pitrou | set | recipients:
+ pitrou, vstinner, zbysz |
| 2012年05月19日 13:43:11 | pitrou | set | messageid: <1337434991.55.0.0911980228462.issue14854@psf.upfronthosting.co.za> |
| 2012年05月19日 13:43:10 | pitrou | link | issue14854 messages |
| 2012年05月19日 13:43:10 | pitrou | create |
|