]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Huge speedup by inlining some common integer operations:
authorGuido van Rossum <guido@python.org>
Thu, 17 Jul 1997 23:12:42 +0000 (23:12 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 17 Jul 1997 23:12:42 +0000 (23:12 +0000)
commitc12da6980fc886664ef0989c68eaf8d2ac8d1cf2
tree5ade1490790c4893a7ad0caf9051dca5d0f0b2ce
parent77eecfa94df1e23e19599de7349cf60845a01242
Huge speedup by inlining some common integer operations:
int+int, int-int, int <compareop> int, and list[int].
(Unfortunately, int*int is way too much code to inline.)

Also corrected a NULL that should have been a zero.
Python/ceval.c