summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2013-12-13 18:57:41 (GMT)
committerBrett Cannon <brett@python.org>2013-12-13 18:57:41 (GMT)
commit98620d87f2e011cbdea384c1822a3325b491d048 (patch)
tree6a142d1875dda767017f41eb113b1b2cf866c321 /Misc
parentd913d9d54e6156a6998ef1f7009cc9ba8142d8a4 (diff)
downloadcpython-98620d87f2e011cbdea384c1822a3325b491d048.zip
cpython-98620d87f2e011cbdea384c1822a3325b491d048.tar.gz
cpython-98620d87f2e011cbdea384c1822a3325b491d048.tar.bz2
Issue #19963: Document that importlib.import_module() will import
parent packages automatically.
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 a668349..a1f6970 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -169,6 +169,9 @@ Tests
Documentation
-------------
+- Issue #19963: Document that importlib.import_module() no longer requires
+ importing parent packages separately.
+
- Issue #18840: Introduce the json module in the tutorial, and deemphasize
the pickle module.