diff options
author | Brett Cannon <brett@python.org> | 2016-09-08 01:39:18 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2016-09-08 01:39:18 (GMT) |
commit | 035a1003820c0148b9a12f3034829fcc655a92bb (patch) | |
tree | 70e69c549aee6c15150b402951999419135984cb /Misc | |
parent | d5f92239818eef182fadc7c6f81f70912090573d (diff) | |
download | cpython-035a1003820c0148b9a12f3034829fcc655a92bb.zip cpython-035a1003820c0148b9a12f3034829fcc655a92bb.tar.gz cpython-035a1003820c0148b9a12f3034829fcc655a92bb.tar.bz2 |
Issue #26667: Add path-like object support to importlib.util.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -108,6 +108,8 @@ Library - Issue #28005: Allow ImportErrors in encoding implementation to propagate. +- Issue #26667: Support path-like objects in importlib.util. + - Issue #27570: Avoid zero-length memcpy() etc calls with null source pointers in the "ctypes" and "array" modules. @@ -237,7 +239,7 @@ Library - Issue #27930: Improved behaviour of logging.handlers.QueueListener. Thanks to Paulo Andrade and Petr Viktorin for the analysis and patch. -- Issue #6766: Distributed reference counting added to multiprocessing +- Issue #6766: Distributed reference counting added to multiprocessing to support nesting of shared values / proxy objects. C API |