Skip to content

Commit b775f13

Browse files
committed
Tidy up assert.
1 parent 593a348 commit b775f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/frame.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ take_ownership(PyFrameObject *f, InterpreterFrame *frame)
8585
PyFrameObject *back = _PyFrame_GetFrameObject(frame->previous);
8686
if (back == NULL) {
8787
/* Memory error here. */
88-
assert(_PyErr_GetTopmostException(_PyThreadState_GET())->exc_type == PyExc_MemoryError);
88+
assert(PyErr_ExceptionMatches(PyExc_MemoryError));
8989
/* Nothing we can do about it */
9090
PyErr_Clear();
9191
_PyErr_WriteUnraisableMsg("Out of memory lazily allocating frame->f_back", NULL);

0 commit comments

Comments
 (0)