diff options
author | Brett Cannon <brett@python.org> | 2013-06-15 02:35:40 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-15 02:35:40 (GMT) |
commit | a38e81428aecdc83dc1493bb76edde49ff76a7b4 (patch) | |
tree | 955429b46aaf807ae8b47c270fcb3b549d090502 /Misc | |
parent | 589c4fffd2df26cf3bacf62de7fab2443d2cee2a (diff) | |
download | cpython-a38e81428aecdc83dc1493bb76edde49ff76a7b4.zip cpython-a38e81428aecdc83dc1493bb76edde49ff76a7b4.tar.gz cpython-a38e81428aecdc83dc1493bb76edde49ff76a7b4.tar.bz2 |
Issue #18194: Introduce importlib.util.cache_from_source() and
source_from_cache(), finishing the work introduced in changset
4134:9cacdb9d0c59.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -123,6 +123,10 @@ Core and Builtins Library ------- +- Issue #18194: Introduce importlib.util.cache_from_source() and + source_from_cache() while documenting the equivalent functions in imp as + deprecated. + - Issue #17907: Document imp.new_module() as deprecated in favour of types.ModuleType. |