summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-23 16:54:40 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-23 16:54:40 (GMT)
commit53ffdc53bf0500e402682d1459a9a8d06573664c (patch)
tree8a31a9cea84833742ff378c663d5854dfe158746 /Misc
parentda6eb5305fabdf4a4dd48c010724bcdf962d1612 (diff)
downloadcpython-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/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6f4cb0a..fd98d02 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.