summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-06-15 23:21:07 (GMT)
committerBrett Cannon <brett@python.org>2012-06-15 23:21:07 (GMT)
commit47b3239cc64958b516492a1227b43c6f0b3be65f (patch)
tree295a6963d8c3d9dbe857dd1af990aac6d9376a4a /Misc
parent24aa693c7ef8f217fbd238eb7af7d828e13a07eb (diff)
downloadcpython-47b3239cc64958b516492a1227b43c6f0b3be65f.zip
cpython-47b3239cc64958b516492a1227b43c6f0b3be65f.tar.gz
cpython-47b3239cc64958b516492a1227b43c6f0b3be65f.tar.bz2
Closes issue #14982: Document that pkgutil's walk_packages() and
iter_modules() requires iter_modules() be defined on an importer. The importers in importlib do not define this non-standard method.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6acf02b..d45c5b5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,10 @@ Core and Builtins
Library
-------
+- Issue #14982: Document that pkgutil's iteration functions require the
+ non-standard iter_modules() method to be defined by an importer (something
+ the importlib importers do not define).
+
- Issue #15036: Allow removing or changing multiple items in
single-file mailboxes (mbox, MMDF, Babyl) flushing the mailbox
between the changes.