diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-17 08:06:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-17 08:06:41 (GMT) |
commit | 5c13aa156255d672aeee4d32bc0965e20c7d6c51 (patch) | |
tree | 4721e29af26d0384caf90e601288c720e424f326 /Misc | |
parent | d887d1f365595c05c0598225f8b893693fecd57c (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |