summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-05-12 21:43:17 (GMT)
committerBrett Cannon <brett@python.org>2012-05-12 21:43:17 (GMT)
commitee78a2b51cd9ede91bb780b71444119e1da19e4e (patch)
tree1bd412c9e1f23283a0435e665ca2d33c00d2d3c4 /Misc
parentacc0c181a85143e0113f1ec9cb838e86cd8df50f (diff)
downloadcpython-ee78a2b51cd9ede91bb780b71444119e1da19e4e.zip
cpython-ee78a2b51cd9ede91bb780b71444119e1da19e4e.tar.gz
cpython-ee78a2b51cd9ede91bb780b71444119e1da19e4e.tar.bz2
Issue #13959: Introduce importlib.find_loader().
The long-term goal is to deprecate imp.find_module() in favour of this API, but it will take some time as some APIs explicitly return/use what imp.find_module() returns.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 78a5ef9..a7d1b44 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,8 @@ Core and Builtins
Library
-------
+- Issue #13959: Introduce importlib.find_loader().
+
- Issue #14082: shutil.copy2() now copies extended attributes, if possible.
Patch by Hynek Schlawack.