Whitespace only changes

This commit is contained in:
Neal Norwitz 2007-02-25 15:53:36 +00:00
parent 1c1a1c5aa1
commit 7218c2d2f4
1 changed files with 2 additions and 3 deletions

View File

@ -1131,8 +1131,7 @@ string_richcompare(PyStringObject *a, PyStringObject *b, int op)
much time, since Py_NE is rarely used. */ much time, since Py_NE is rarely used. */
if (a->ob_size == b->ob_size if (a->ob_size == b->ob_size
&& (a->ob_sval[0] == b->ob_sval[0] && (a->ob_sval[0] == b->ob_sval[0]
&& memcmp(a->ob_sval, b->ob_sval, && memcmp(a->ob_sval, b->ob_sval, a->ob_size) == 0)) {
a->ob_size) == 0)) {
result = Py_True; result = Py_True;
} else { } else {
result = Py_False; result = Py_False;
@ -1145,7 +1144,7 @@ string_richcompare(PyStringObject *a, PyStringObject *b, int op)
c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval); c = Py_CHARMASK(*a->ob_sval) - Py_CHARMASK(*b->ob_sval);
if (c==0) if (c==0)
c = memcmp(a->ob_sval, b->ob_sval, min_len); c = memcmp(a->ob_sval, b->ob_sval, min_len);
}else } else
c = 0; c = 0;
if (c == 0) if (c == 0)
c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0; c = (len_a < len_b) ? -1 : (len_a > len_b) ? 1 : 0;