We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 593a348 commit b775f13Copy full SHA for b775f13
Python/frame.c
@@ -85,7 +85,7 @@ take_ownership(PyFrameObject *f, InterpreterFrame *frame)
85
PyFrameObject *back = _PyFrame_GetFrameObject(frame->previous);
86
if (back == NULL) {
87
/* Memory error here. */
88
- assert(_PyErr_GetTopmostException(_PyThreadState_GET())->exc_type == PyExc_MemoryError);
+ assert(PyErr_ExceptionMatches(PyExc_MemoryError));
89
/* Nothing we can do about it */
90
PyErr_Clear();
91
_PyErr_WriteUnraisableMsg("Out of memory lazily allocating frame->f_back", NULL);
0 commit comments