diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-20 13:14:23 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2008-12-20 13:14:23 (GMT) |
commit | 51f3ef9da082435f063d2e78de1dd20fa65cf0de (patch) | |
tree | 254a2f82d7c66ac4ee73de9cd31374af99b11c62 /Misc | |
parent | c9928ccf0184fb3db4b05d7eab8cd366882d513f (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |