Commit e97ecba2 authored by Mark Dickinson's avatar Mark Dickinson

Merged revisions 80961 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r80961 | mark.dickinson | 2010-05-08 09:01:19 +0100 (Sat, 08 May 2010) | 2 lines

  Issue #8659: Remove redundant ABS calls.  Thanks Daniel Stutzbach.
........
parent 06f5a53a
......@@ -2492,9 +2492,6 @@ 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);
}
else {
......@@ -3772,7 +3769,7 @@ long_abs(PyLongObject *v)
static int
long_bool(PyLongObject *v)
{
return ABS(Py_SIZE(v)) != 0;
return Py_SIZE(v) != 0;
}
static PyObject *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment