mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
Issue #15926: Fix crash after multiple reinitializations of the interpreter.
This commit is contained in:
parent
7ae251a025
commit
9d20e0edd9
2 changed files with 3 additions and 1 deletions
|
@ -11852,7 +11852,6 @@ INITFUNC(void)
|
|||
|
||||
/* initialize TerminalSize_info */
|
||||
PyStructSequence_InitType(&TerminalSizeType, &TerminalSize_desc);
|
||||
Py_INCREF(&TerminalSizeType);
|
||||
}
|
||||
#if defined(HAVE_WAITID) && !defined(__APPLE__)
|
||||
Py_INCREF((PyObject*) &WaitidResultType);
|
||||
|
@ -11915,6 +11914,7 @@ INITFUNC(void)
|
|||
|
||||
#endif /* __APPLE__ */
|
||||
|
||||
Py_INCREF(&TerminalSizeType);
|
||||
PyModule_AddObject(m, "terminal_size", (PyObject*) &TerminalSizeType);
|
||||
|
||||
billion = PyLong_FromLong(1000000000);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue