Kaydet (Commit) 9d20e0ed authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #15926: Fix crash after multiple reinitializations of the interpreter.

üst 7ae251a0
...@@ -10,6 +10,8 @@ What's New in Python 3.3.1 ...@@ -10,6 +10,8 @@ What's New in Python 3.3.1
Core and Builtins Core and Builtins
----------------- -----------------
- Issue #15926: Fix crash after multiple reinitializations of the interpreter.
- Issue #15895: Fix FILE pointer leak in one error branch of - Issue #15895: Fix FILE pointer leak in one error branch of
PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit PyRun_SimpleFileExFlags() when filename points to a pyc/pyo file, closeit
is false an and set_main_loader() fails. is false an and set_main_loader() fails.
......
...@@ -11852,7 +11852,6 @@ INITFUNC(void) ...@@ -11852,7 +11852,6 @@ INITFUNC(void)
/* initialize TerminalSize_info */ /* initialize TerminalSize_info */
PyStructSequence_InitType(&TerminalSizeType, &TerminalSize_desc); PyStructSequence_InitType(&TerminalSizeType, &TerminalSize_desc);
Py_INCREF(&TerminalSizeType);
} }
#if defined(HAVE_WAITID) && !defined(__APPLE__) #if defined(HAVE_WAITID) && !defined(__APPLE__)
Py_INCREF((PyObject*) &WaitidResultType); Py_INCREF((PyObject*) &WaitidResultType);
...@@ -11915,6 +11914,7 @@ INITFUNC(void) ...@@ -11915,6 +11914,7 @@ INITFUNC(void)
#endif /* __APPLE__ */ #endif /* __APPLE__ */
Py_INCREF(&TerminalSizeType);
PyModule_AddObject(m, "terminal_size", (PyObject*) &TerminalSizeType); PyModule_AddObject(m, "terminal_size", (PyObject*) &TerminalSizeType);
billion = PyLong_FromLong(1000000000); billion = PyLong_FromLong(1000000000);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment