diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-07-03 22:06:32 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-07-03 22:06:32 (GMT) |
commit | 9bfd0dee9b80c158cfb4228e7495820a791cd1fb (patch) | |
tree | 1f988de176616b226dc49e011322e6dac1217473 /Python | |
parent | 878802435d5839f54b49f1537eeca6dce330569c (diff) | |
download | cpython-9bfd0dee9b80c158cfb4228e7495820a791cd1fb.zip cpython-9bfd0dee9b80c158cfb4228e7495820a791cd1fb.tar.gz cpython-9bfd0dee9b80c158cfb4228e7495820a791cd1fb.tar.bz2 |
no one passes NULL here (or should anyway)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 5a5e23c5..5c93637 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; |