summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2016-01-15 19:22:19 (GMT)
committerBrett Cannon <brett@python.org>2016-01-15 19:22:19 (GMT)
commit56aae8f3043761853504193508d404280a3ec40b (patch)
treee47f204077b6723f54cf0da43a4fc33784844dfb /Misc
parent07b954d1488c961cf8520f9bdb727925bd4b191e (diff)
downloadcpython-56aae8f3043761853504193508d404280a3ec40b.zip
cpython-56aae8f3043761853504193508d404280a3ec40b.tar.gz
cpython-56aae8f3043761853504193508d404280a3ec40b.tar.bz2
Issue #17633: Improve support for namespace packages with zipimport.
Previously zipimport mistakenly limited namespace support to only the top-level of the zipfile when it should have supported an arbitrary depth. Thanks to Phil Connel for the bug report and initial patch and Mike Romberg for the final patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e3ec4a9..4a14bc0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -44,6 +44,8 @@ Core and Builtins
Library
-------
+- Issue #17633: Improve zipimport's support for namespace packages.
+
- Issue #24705: Fix sysconfig._parse_makefile not expanding ${} vars
appearing before $() vars.