summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorlarry <larry@hastings.org>2015-08-12 01:59:15 (GMT)
committerlarry <larry@hastings.org>2015-08-12 01:59:15 (GMT)
commit6707906ea5e0df1132d3cd0c77707ccc19948341 (patch)
treea2fa878b8d00a791ce17dd47296f177fc45cf825 /Misc/NEWS
parentcae101f5ecd8fee38a37ce8fa46c141cd8a522ef (diff)
parent3008bc0f4abb3f71433b1fcd97cc801da0a866cc (diff)
downloadcpython-6707906ea5e0df1132d3cd0c77707ccc19948341.zip
cpython-6707906ea5e0df1132d3cd0c77707ccc19948341.tar.gz
cpython-6707906ea5e0df1132d3cd0c77707ccc19948341.tar.bz2
Merged in brettcannon/cpython350/3.5 (pull request #2)
Issue #24492: make sure that ``from ... import ...` raises an ImportError if __name__ is not defined on a package.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9156c29..27a0564 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,10 @@ Release date: 2015-08-09
Core and Builtins
-----------------
+- Issue #24492: A "package" lacking a __name__ attribute when trying to perform
+ a ``from .. import ...`` statement will trigger an ImportError instead of an
+ AttributeError.
+
- Issue #24667: Resize odict in all cases that the underlying dict resizes.
Library