mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
gh-83004: Clean up refleak in _io initialisation (GH-98840)
(cherry picked from commit 1208037246)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
This commit is contained in:
parent
d025046ef5
commit
29c3dc050a
2 changed files with 4 additions and 3 deletions
|
|
@ -0,0 +1 @@
|
|||
Clean up refleak on failed module initialisation in :mod:`_io`.
|
||||
|
|
@ -703,10 +703,10 @@ PyInit__io(void)
|
|||
goto fail;
|
||||
|
||||
/* BlockingIOError, for compatibility */
|
||||
Py_INCREF(PyExc_BlockingIOError);
|
||||
if (PyModule_AddObject(m, "BlockingIOError",
|
||||
(PyObject *) PyExc_BlockingIOError) < 0)
|
||||
if (PyModule_AddObjectRef(m, "BlockingIOError",
|
||||
(PyObject *) PyExc_BlockingIOError) < 0) {
|
||||
goto fail;
|
||||
}
|
||||
|
||||
// Set type base classes
|
||||
PyFileIO_Type.tp_base = &PyRawIOBase_Type;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue