diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-26 08:08:15 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2013-10-26 08:08:15 (GMT) |
commit | 059def58a5201d4626396ad39cc885645235b959 (patch) | |
tree | 2f8b43b7161499ab23f2be2ec5454c739e0bf768 /Misc/NEWS | |
parent | 9eabac68a30428704754f7cf2b28a61e94e9d654 (diff) | |
download | cpython-059def58a5201d4626396ad39cc885645235b959.zip cpython-059def58a5201d4626396ad39cc885645235b959.tar.gz cpython-059def58a5201d4626396ad39cc885645235b959.tar.bz2 |
Close #19330 by using public classes in contextlib
- added test cases to ensure docstrings are reasonable
- also updates various comments in contextlib for accuracy
- identifed #19404 as an issue making it difficult to provide
good help output on generator based context manager instances
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,11 @@ Core and Builtins Library ------- +- Issue #19330: the unnecessary wrapper functions have been removed from the + implementations of the new contextlib.redirect_stdout and + contextlib.suppress context managers, which also ensures they provide + reasonable help() output on instances + - Issue #18685: Restore re performance to pre-PEP 393 levels. - Issue #19339: telnetlib module is now using time.monotonic() when available |