diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-09-27 21:08:38 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-09-27 21:08:38 (GMT) |
commit | 5305a998d587f7669dd751ccc3f49d6245c60840 (patch) | |
tree | d468558235c2e791c2a873e454a51ef76e053c37 /Misc | |
parent | 1771b54bed1faa2d8216d3d9d76d3f604e93336d (diff) | |
download | cpython-5305a998d587f7669dd751ccc3f49d6245c60840.zip cpython-5305a998d587f7669dd751ccc3f49d6245c60840.tar.gz cpython-5305a998d587f7669dd751ccc3f49d6245c60840.tar.bz2 |
Since __import__ is not designed for general use, have its docstring point
people towards importlib.import_module().
Closes issue #7397.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2 Alpha 3? Core and Builtins ----------------- +- Issue #7397: Mention that importlib.import_module() is probably what someone + really wants to be using in __import__'s docstring. + - Issue #8521: Allow CreateKeyEx, OpenKeyEx, and DeleteKeyEx functions of winreg to use named arguments. |