commit | 51f3ef9da082435f063d2e78de1dd20fa65cf0de | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sat Dec 20 13:14:23 2008 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sat Dec 20 13:14:23 2008 +0000 |
tree | 254a2f82d7c66ac4ee73de9cd31374af99b11c62 | |
parent | c9928ccf0184fb3db4b05d7eab8cd366882d513f [diff] [blame] |
Issue #3106: Speedup some comparisons. This also removes the last call to Py_CmpToRich from the codebase (in longobject.c).
diff --git a/Misc/NEWS b/Misc/NEWS index 9274a83..98dae61 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,8 @@ 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.