Commit 9bfd0dee authored by Benjamin Peterson's avatar Benjamin Peterson

no one passes NULL here (or should anyway)

parent 87880243
...@@ -1115,9 +1115,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) ...@@ -1115,9 +1115,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
/* Start of code */ /* Start of code */
if (f == NULL)
return NULL;
/* push frame */ /* push frame */
if (Py_EnterRecursiveCall("")) if (Py_EnterRecursiveCall(""))
return NULL; return NULL;
......
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