diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-03-04 10:39:42 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-03-04 10:39:42 (GMT) |
commit | 62b4b9eecbcdd98d318eec522c8c48a3843be855 (patch) | |
tree | b93c162769a10997e28b9ca1ab5adcb6329e6587 /Misc | |
parent | 01cc2d5fb8354f9bf8fe523ee1c26f82d871a175 (diff) | |
download | cpython-62b4b9eecbcdd98d318eec522c8c48a3843be855.zip cpython-62b4b9eecbcdd98d318eec522c8c48a3843be855.tar.gz cpython-62b4b9eecbcdd98d318eec522c8c48a3843be855.tar.bz2 |
Close #20839: pkgutil.find_loader now uses importlib.util.find_spec
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -12,6 +12,13 @@ Core and Builtins - Issue #20786: Fix signatures for dict.__delitem__ and property.__delete__ builtins. +Library +------- + +- Issue #20839: Don't trigger a DeprecationWarning in the still supported + pkgutil.get_loader() API when __loader__ isn't set on a module (nor + when pkgutil.find_loader() is called directly). + Build ----- @@ -27,7 +34,7 @@ Build uninstalling pip (rather than failing) if the user has updated pip to a different version from the one bundled with ensurepip. -- Issue #20465: Update OS X and Windows installer builds to use +- Issue #20465: Update OS X and Windows installer builds to use SQLite 3.8.3.1. |