]> granicus.if.org Git - python/commit
Issue #7732: Fix a crash on importing a module if a directory has the same name
authorVictor Stinner <victor.stinner@haypocalc.com>
Fri, 23 Sep 2011 17:37:03 +0000 (19:37 +0200)
committerVictor Stinner <victor.stinner@haypocalc.com>
Fri, 23 Sep 2011 17:37:03 +0000 (19:37 +0200)
commit63c22fac727a72f0a4da8f72b12cd5f9b480376b
tree8c3da37f17c59c36e9204e527c1ceea2a48695f7
parent51b719814e0c32fd0eea570d3769d323bea97cab
Issue #7732: Fix a crash on importing a module if a directory has the same name
than a Python module (e.g. "__init__.py"): don't close the file twice.

PyFile_FromFile() does also close the file if PyString_FromString() failed. It
did already close the file on fill_file_fields() error (e.g. if the file is a
directory).
Doc/c-api/file.rst
Lib/test/test_import.py
Misc/NEWS
Objects/fileobject.c
Python/import.c