summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2012-08-06 00:46:25 (GMT)
committerBrett Cannon <brett@python.org>2012-08-06 00:46:25 (GMT)
commit9b000e7a6835e8f1899276be1d2dfebb651ce42b (patch)
tree8ed842957eb0d1119a4e8f2d9073b4bf8e5d3178 /Misc/NEWS
parent03e2180b3f5c8fbbbf26e8ffc168ddf6269aba02 (diff)
downloadcpython-9b000e7a6835e8f1899276be1d2dfebb651ce42b.zip
cpython-9b000e7a6835e8f1899276be1d2dfebb651ce42b.tar.gz
cpython-9b000e7a6835e8f1899276be1d2dfebb651ce42b.tar.bz2
Issue #15482: Properly document the default 'level' parameter for
__import__(). To help explain why the -1 default value is typically not seen, a note about how import statements only use values of >= 0 is also noted.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ed4fa87..99812d2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -465,6 +465,9 @@ Build
Documentation
-------------
+- Issue 15482: Properly document the default 'level' value for __import__()
+ while warning about using negative values.
+
- Issue #15230: Clearly document some of the limitations of the runpy
module and nudge readers towards importlib when appropriate.