http://hg.python.org/cpython/rev/174fbbed8747 changeset: 73884:174fbbed8747 user: Charles-François Natali <neologix at free.fr> date: Wed Dec 07 23:17:58 2011 +0100 summary: Followup to a541bda2f5e2: Add a short comment. files: Python/import.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Python/import.c b/Python/import.c --- a/Python/import.c +++ b/Python/import.c @@ -1946,6 +1946,7 @@ if (_Py_stat(filename, &statbuf) != 0 || S_ISDIR(statbuf.st_mode)) { + /* it doesn't exist, or it's a directory */ Py_DECREF(filename); continue; } -- Repository URL: http://hg.python.org/cpython