From: Charles-François Natali Date: Wed, 7 Dec 2011 22:17:58 +0000 (+0100) Subject: Followup to a541bda2f5e2: Add a short comment. X-Git-Tag: v3.3.0a1~666 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1659b83b1d976aa0b938e347e5bf9273ebd0c7a4;p=thirdparty%2FPython%2Fcpython.git Followup to a541bda2f5e2: Add a short comment. --- diff --git a/Python/import.c b/Python/import.c index 9773687f62f9..47839c543d49 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1946,6 +1946,7 @@ find_module_path_list(PyObject *fullname, PyObject *name, if (_Py_stat(filename, &statbuf) != 0 || S_ISDIR(statbuf.st_mode)) { + /* it doesn't exist, or it's a directory */ Py_DECREF(filename); continue; }