summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-17 08:06:41 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-03-17 08:06:41 (GMT)
commit5c13aa156255d672aeee4d32bc0965e20c7d6c51 (patch)
tree4721e29af26d0384caf90e601288c720e424f326 /Misc
parentd887d1f365595c05c0598225f8b893693fecd57c (diff)
downloadcpython-5c13aa156255d672aeee4d32bc0965e20c7d6c51.zip
cpython-5c13aa156255d672aeee4d32bc0965e20c7d6c51.tar.gz
cpython-5c13aa156255d672aeee4d32bc0965e20c7d6c51.tar.bz2
Fix pyclbr to support importing packages
Issue #26569: Fix pyclbr.readmodule() and pyclbr.readmodule_ex() to support importing packages.
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 eef7f01..4299e4e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,9 @@ Core and Builtins
Library
-------
+- Issue #26569: Fix :func:`pyclbr.readmodule` and :func:`pyclbr.readmodule_ex`
+ to support importing packages.
+
- Issue #26499: Account for remaining Content-Length in
HTTPResponse.readline() and read1(). Based on patch by Silent Ghost.
Also document that HTTPResponse now supports these methods.