diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-23 16:54:40 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-09-23 16:54:40 (GMT) |
commit | 53ffdc53bf0500e402682d1459a9a8d06573664c (patch) | |
tree | 8a31a9cea84833742ff378c663d5854dfe158746 /Misc | |
parent | da6eb5305fabdf4a4dd48c010724bcdf962d1612 (diff) | |
download | cpython-53ffdc53bf0500e402682d1459a9a8d06573664c.zip cpython-53ffdc53bf0500e402682d1459a9a8d06573664c.tar.gz cpython-53ffdc53bf0500e402682d1459a9a8d06573664c.tar.bz2 |
Issue #7732: Don't open a directory as a file anymore while importing a
module. Ignore the direcotry if its name matchs the module name (e.g.
"__init__.py") and raise a ImportError instead.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Issue #7732: Don't open a directory as a file anymore while importing a + module. Ignore the direcotry if its name matchs the module name (e.g. + "__init__.py") and raise a ImportError instead. + - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for finding the bug and providing a patch. @@ -77,7 +81,7 @@ Tests Extension Modules ----------------- - + - Issue #13022: Fix: _multiprocessing.recvfd() doesn't check that file descriptor was actually received. |