diff options
author | Brett Cannon <brett@python.org> | 2014-05-23 16:30:37 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-05-23 16:30:37 (GMT) |
commit | 8447c703d1fd0107a52b15de7ce3a7056e1ec160 (patch) | |
tree | 1c6db7c398072ba929180cab46acf52bad84fec0 /Misc/NEWS | |
parent | 065266450ea5519a43bcc199e48d304f1e7038e8 (diff) | |
download | cpython-8447c703d1fd0107a52b15de7ce3a7056e1ec160.zip cpython-8447c703d1fd0107a52b15de7ce3a7056e1ec160.tar.gz cpython-8447c703d1fd0107a52b15de7ce3a7056e1ec160.tar.bz2 |
Issue #14710: Fix both pkgutil.find_loader() and get_loader() to not
raise an exception when a module doesn't exist.
Thanks to Pavel Aslanov for the bug report.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,6 +18,12 @@ Core and Builtins Library ------- +- Issue #14710: pkgutil.get_loader() no longer raises an exception when None is + found in sys.modules. + +- Issue #14710: pkgutil.find_loader() no longer raises an exception when a + module doesn't exist. + - Issue #21538: The plistlib module now supports loading of binary plist files when reference or offset size is not a power of two. |