summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-01-26 01:16:50 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-01-26 01:16:50 (GMT)
commit93881c6c58296f26b2560c27aeee7b425f211e9f (patch)
tree813d4845c4ae52ee063653c44187458460923671 /Misc
parentaaedcef5786f10593b51d389423b5d7ce97727c0 (diff)
downloadcpython-93881c6c58296f26b2560c27aeee7b425f211e9f.zip
cpython-93881c6c58296f26b2560c27aeee7b425f211e9f.tar.gz
cpython-93881c6c58296f26b2560c27aeee7b425f211e9f.tar.bz2
Backport importlib in the form of providing importlib.import_module(). This has
been done purely to help transitions from 2.7 to 3.1.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9878199..da016c1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -145,6 +145,9 @@ Core and Builtins
Library
-------
+- Backport importlib from Python 3.1. Only the import_module() function has
+ been backported to help facilitate transitions from 2.7 to 3.1.
+
- Issue #1885: distutils. When running sdist with --formats=tar,gztar
the tar file was overriden by the gztar one.