Commit 55bd1efb authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

Clear reference to the static PyExc_RecursionErrorInst in _PyExc_Fini.

parent 2dcd7a0d
......@@ -2136,6 +2136,6 @@ _PyExc_Init(void)
void
_PyExc_Fini(void)
{
Py_XDECREF(PyExc_MemoryErrorInst);
PyExc_MemoryErrorInst = NULL;
Py_CLEAR(PyExc_MemoryErrorInst);
Py_CLEAR(PyExc_RecursionErrorInst);
}
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