diff options
author | Brett Cannon <brett@python.org> | 2012-07-09 18:10:23 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-07-09 18:10:23 (GMT) |
commit | b19449751f7e8b83ab6b8669111c111b905a14b7 (patch) | |
tree | e154d51d91f84793b31da7ca7bd7653fa704edd8 /Misc | |
parent | 19a2f5961ce235e9ca9944069b0f5f21b340de9c (diff) | |
download | cpython-b19449751f7e8b83ab6b8669111c111b905a14b7.zip cpython-b19449751f7e8b83ab6b8669111c111b905a14b7.tar.gz cpython-b19449751f7e8b83ab6b8669111c111b905a14b7.tar.bz2 |
Issue #15288: Clarify that pkgutil.walk_packages() and friends will no
longer work as expected in Python 3.3 as importlib's loaders do not
implement the non-standard iter_modules() method. Also link to the
term "loader" in the requisite notes to help make it clearer what has
happened.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -101,6 +101,11 @@ Tools/Demos Documentation ------------- +- Issue #15288: Link to the term "loader" in notes in pkgutil about how things + won't work as expected in Python 3.3 and mark the requisite functions as + "changed" since they will no longer work with modules directly imported by + import itself. + - Issue #13557: Clarify effect of giving two different namespaces to exec or execfile(). |