summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-04-05 09:33:54 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-04-05 09:33:54 (GMT)
commit7ab9e22e341603a1bf2fddd2eafa613bcd71b5cf (patch)
tree8444157bb22ce375730247924c9939a232a9c3ec /Misc
parent271b27e5fe96c82fbb62ecc8034baa5aaf53d228 (diff)
downloadcpython-7ab9e22e341603a1bf2fddd2eafa613bcd71b5cf.zip
cpython-7ab9e22e341603a1bf2fddd2eafa613bcd71b5cf.tar.gz
cpython-7ab9e22e341603a1bf2fddd2eafa613bcd71b5cf.tar.bz2
Issue #11707: Fast C version of functools.cmp_to_key()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ef274eb..3b59906 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,6 +97,9 @@ Library
- Issue #10791: Implement missing method GzipFile.read1(), allowing GzipFile
to be wrapped in a TextIOWrapper. Patch by Nadeem Vawda.
+- Issue #11707: Added a fast C version of functools.cmp_to_key().
+ Patch by Filip GruszczyƄski.
+
- Issue #11688: Add sqlite3.Connection.set_trace_callback(). Patch by
Torsten Landschoff.