summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorNick Coghlan <ncoghlan@gmail.com>2013-10-26 08:08:15 (GMT)
committerNick Coghlan <ncoghlan@gmail.com>2013-10-26 08:08:15 (GMT)
commit059def58a5201d4626396ad39cc885645235b959 (patch)
tree2f8b43b7161499ab23f2be2ec5454c739e0bf768 /Misc/NEWS
parent9eabac68a30428704754f7cf2b28a61e94e9d654 (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ba47ef..85fbfaa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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