From: Benjamin Peterson Date: Fri, 25 May 2012 07:19:40 +0000 (-0700) Subject: actually return the result X-Git-Tag: v3.3.0a4~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d12e1458f0f6af0af350b39552107f2f6fdf363;p=python actually return the result --- diff --git a/Modules/zipimport.c b/Modules/zipimport.c index 4e74edf9e8..c33ab8bc97 100644 --- a/Modules/zipimport.c +++ b/Modules/zipimport.c @@ -394,7 +394,7 @@ zipimporter_find_module(PyObject *obj, PyObject *args) break; } Py_XINCREF(result); - return NULL; + return result; }