diff options
author | Brett Cannon <brett@python.org> | 2014-01-07 20:52:42 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-01-07 20:52:42 (GMT) |
commit | 8d942296bb6cc45e519447484084bee1507d664b (patch) | |
tree | c546f6f8819af7d96b61ba331b0f7cf479a4ea48 /Misc | |
parent | 61272b77b0792318105bbdb6887a029b6a1743da (diff) | |
download | cpython-8d942296bb6cc45e519447484084bee1507d664b.zip cpython-8d942296bb6cc45e519447484084bee1507d664b.tar.gz cpython-8d942296bb6cc45e519447484084bee1507d664b.tar.bz2 |
Issue #19719: Update various finder and loader ABCs such that their
old methods now provide implementations when PEP 451 APIs are present.
This should help with backwards-compatibility with code which has not
been updated to work with PEP 451.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ Core and Builtins Library ------- +- Issue #19719: Make importlib.abc.MetaPathFinder.find_module(), + PathEntryFinder.find_loader(), and Loader.load_module() use PEP 451 APIs to + help with backwards-compatibility. + - Issue #20144: inspect.Signature now supports parsing simple symbolic constants as parameter default values in __text_signature__. |