summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-20 13:14:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-20 13:14:23 (GMT)
commit51f3ef9da082435f063d2e78de1dd20fa65cf0de (patch)
tree254a2f82d7c66ac4ee73de9cd31374af99b11c62 /Misc
parentc9928ccf0184fb3db4b05d7eab8cd366882d513f (diff)
downloadcpython-51f3ef9da082435f063d2e78de1dd20fa65cf0de.zip
cpython-51f3ef9da082435f063d2e78de1dd20fa65cf0de.tar.gz
cpython-51f3ef9da082435f063d2e78de1dd20fa65cf0de.tar.bz2
Issue #3106: Speedup some comparisons. This also removes the last call
to Py_CmpToRich from the codebase (in longobject.c).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9274a83..98dae61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,8 @@ What's New in Python 3.1 alpha 0
Core and Builtins
-----------------
+- Issue #3106: Speedup some comparisons (str/str and int/int).
+
- Issue #2183: Simplify and optimize bytecode for list, dict and set
comprehensions. Original patch for list comprehensions by Neal Norwitz.