Commit 2b597e4f authored by Guido van Rossum's avatar Guido van Rossum

Correct one-line typo, reported by yole @ SF, bug 130077.

parent 78dc825a
......@@ -467,7 +467,7 @@ array_richcompare(PyObject *v, PyObject *w, int op)
int cmp;
switch (op) {
case Py_LT: cmp = vs < ws; break;
case Py_LE: cmp = ws <= ws; break;
case Py_LE: cmp = vs <= ws; break;
case Py_EQ: cmp = vs == ws; break;
case Py_NE: cmp = vs != ws; break;
case Py_GT: cmp = vs > ws; break;
......
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