summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-05-23 16:30:37 (GMT)
committerBrett Cannon <brett@python.org>2014-05-23 16:30:37 (GMT)
commit8447c703d1fd0107a52b15de7ce3a7056e1ec160 (patch)
tree1c6db7c398072ba929180cab46acf52bad84fec0 /Misc
parent065266450ea5519a43bcc199e48d304f1e7038e8 (diff)
downloadcpython-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')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6bee579..cb99d56 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.