]> granicus.if.org Git - python/commitdiff
Followup to a541bda2f5e2: Add a short comment.
authorCharles-François Natali <neologix@free.fr>
Wed, 7 Dec 2011 22:17:58 +0000 (23:17 +0100)
committerCharles-François Natali <neologix@free.fr>
Wed, 7 Dec 2011 22:17:58 +0000 (23:17 +0100)
Python/import.c

index 9773687f62f926aa07fff9bb9a82fa21e7d115a8..47839c543d49026a295917c6c6805cecd05f0768 100644 (file)
@@ -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;
             }