From: Benjamin Peterson <benjamin@python.org>
Date: Sun, 3 Jul 2011 22:06:32 +0000 (-0500)
Subject: no one passes NULL here (or should anyway)
X-Git-Tag: v3.3.0a1~1975
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bfd0dee9b80c158cfb4228e7495820a791cd1fb;p=python

no one passes NULL here (or should anyway)
---

diff --git a/Python/ceval.c b/Python/ceval.c
index 5a5e23c552..5c936376db 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1115,9 +1115,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
 
 /* Start of code */
 
-    if (f == NULL)
-        return NULL;
-
     /* push frame */
     if (Py_EnterRecursiveCall(""))
         return NULL;