summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-04-14 12:30:42 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-04-14 12:30:42 (GMT)
commitc4e0d982f3b967973553c99722b1e4002c8b35f6 (patch)
tree254a3f22bc8bfe92f268a95c73ca8fd9423af3c6 /Misc
parent8157459d6b39bff7a8d6ffdfb66175d74dde1448 (diff)
downloadcpython-c4e0d982f3b967973553c99722b1e4002c8b35f6.zip
cpython-c4e0d982f3b967973553c99722b1e4002c8b35f6.tar.gz
cpython-c4e0d982f3b967973553c99722b1e4002c8b35f6.tar.bz2
Close issue #16163: handle submodules in pkgutil.iter_importers
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e21674f..c40ce84 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
+- Issue #16163: Make the importlib based version of pkgutil.iter_importers
+ work for submodules. Initial patch by Berker Peksag.
+
- Issue #16804: Fix a bug in the 'site' module that caused running
'python -S -m site' to incorrectly throw an exception.