summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-08 09:55:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-08 09:55:31 (GMT)
commit67b212e608044b094272248200db71af69518df9 (patch)
tree672383dd6eff6fd4c88d515288ac170bb7c0026a /Misc/NEWS
parentd97b7b5158ce3149d4fc7d45a1d8af694ef3564c (diff)
downloadcpython-67b212e608044b094272248200db71af69518df9.zip
cpython-67b212e608044b094272248200db71af69518df9.tar.gz
cpython-67b212e608044b094272248200db71af69518df9.tar.bz2
Issue #10859: Make `contextlib.GeneratorContextManager` officially
private by renaming it to `_GeneratorContextManager`.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0683245..0b2d346 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,9 @@ Core and Builtins
Library
-------
+- Issue #10859: Make ``contextlib.GeneratorContextManager`` officially
+ private by renaming it to ``_GeneratorContextManager``.
+
- Issue #10042: Fixed the total_ordering decorator to handle cross-type
comparisons that could lead to infinite recursion.