cpython: 3e16c8c34e69 (original) (raw)

Mercurial > cpython

changeset 87452:3e16c8c34e69

Issue #17810: Fixed NULL check in _PyObject_GetItemsIter() CID 1131948: Logically dead code (DEADCODE) [#17810]

Christian Heimes christian@cheimes.de
date Sat, 23 Nov 2013 21:19:43 +0100
parents 8a8392aff111
children 6eca53cf005d
files Objects/typeobject.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Objects/typeobject.c 2

line wrap: on

line diff

--- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -3693,7 +3693,7 @@ Py_LOCAL(int) } else { *listitems = PyObject_GetIter(obj);