diff options
author | Brett Cannon <brett@python.org> | 2012-05-12 21:43:17 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-05-12 21:43:17 (GMT) |
commit | ee78a2b51cd9ede91bb780b71444119e1da19e4e (patch) | |
tree | 1bd412c9e1f23283a0435e665ca2d33c00d2d3c4 /Misc | |
parent | acc0c181a85143e0113f1ec9cb838e86cd8df50f (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |