commit | 1b669962815db3e0acc9a9f1f2a923be718350e5 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Aug 07 05:54:08 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Aug 07 05:54:08 2010 +0000 |
tree | 682c18370e7d796c6e374075e2d23d9568627554 | |
parent | 08d01eedeff8db39bcc081aebed0bfd1ae54e9e0 [diff] [blame] |
Fix nit (sentinel on lhs of comparison).
diff --git a/Objects/iterobject.c b/Objects/iterobject.c index b534b4a..91a93f5 100644 --- a/Objects/iterobject.c +++ b/Objects/iterobject.c
@@ -177,9 +177,7 @@ Py_DECREF(args); if (result != NULL) { int ok; - ok = PyObject_RichCompareBool(result, - it->it_sentinel, - Py_EQ); + ok = PyObject_RichCompareBool(it->it_sentinel, result, Py_EQ); if (ok == 0) return result; /* Common case, fast path */ Py_DECREF(result);