summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-06-15 02:35:40 (GMT)
committerBrett Cannon <brett@python.org>2013-06-15 02:35:40 (GMT)
commita38e81428aecdc83dc1493bb76edde49ff76a7b4 (patch)
tree955429b46aaf807ae8b47c270fcb3b549d090502 /Misc
parent589c4fffd2df26cf3bacf62de7fab2443d2cee2a (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6b4bb2b..5fbc8d8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.