diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-08 08:01:19 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-08 08:01:19 (GMT) |
commit | 22ff664ff7850032118c712023a4882ab23d471b (patch) | |
tree | e91560f68a9ab506a092626fdc596c457720d1ea /Objects/longobject.c | |
parent | 18e4dd74e06a8d036e46336041a72f3dae52b15c (diff) | |
download | cpython-22ff664ff7850032118c712023a4882ab23d471b.zip cpython-22ff664ff7850032118c712023a4882ab23d471b.tar.gz cpython-22ff664ff7850032118c712023a4882ab23d471b.tar.bz2 |
Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach.
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index ddcce04..a41782a 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -2354,10 +2354,7 @@ long_compare(PyLongObject *a, PyLongObject *b) Py_ssize_t sign; if (Py_SIZE(a) != Py_SIZE(b)) { - if (ABS(Py_SIZE(a)) == 0 && ABS(Py_SIZE(b)) == 0) - sign = 0; - else - sign = Py_SIZE(a) - Py_SIZE(b); + sign = Py_SIZE(a) - Py_SIZE(b); } else { Py_ssize_t i = ABS(Py_SIZE(a)); @@ -3606,7 +3603,7 @@ long_abs(PyLongObject *v) static int long_nonzero(PyLongObject *v) { - return ABS(Py_SIZE(v)) != 0; + return Py_SIZE(v) != 0; } static PyObject * |