From 2d12e1458f0f6af0af350b39552107f2f6fdf363 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 25 May 2012 00:19:40 -0700 Subject: [PATCH] actually return the result --- Modules/zipimport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.40.0