mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
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. ........
This commit is contained in:
parent
06f5a53a7a
commit
e97ecba241
1 changed files with 2 additions and 5 deletions
|
|
@ -2492,10 +2492,7 @@ long_compare(PyLongObject *a, PyLongObject *b)
|
||||||
Py_ssize_t sign;
|
Py_ssize_t sign;
|
||||||
|
|
||||||
if (Py_SIZE(a) != Py_SIZE(b)) {
|
if (Py_SIZE(a) != Py_SIZE(b)) {
|
||||||
if (ABS(Py_SIZE(a)) == 0 && ABS(Py_SIZE(b)) == 0)
|
sign = Py_SIZE(a) - Py_SIZE(b);
|
||||||
sign = 0;
|
|
||||||
else
|
|
||||||
sign = Py_SIZE(a) - Py_SIZE(b);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Py_ssize_t i = ABS(Py_SIZE(a));
|
Py_ssize_t i = ABS(Py_SIZE(a));
|
||||||
|
|
@ -3772,7 +3769,7 @@ long_abs(PyLongObject *v)
|
||||||
static int
|
static int
|
||||||
long_bool(PyLongObject *v)
|
long_bool(PyLongObject *v)
|
||||||
{
|
{
|
||||||
return ABS(Py_SIZE(v)) != 0;
|
return Py_SIZE(v) != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue