Author: guido.van.rossum
Date: Tue Dec 19 22:35:46 2006
New Revision: 53087

Modified:
   python/branches/p3yk/Objects/object.c
Log:
The opstrings table was backwards.  Add an XXX comment.


Modified: python/branches/p3yk/Objects/object.c
==============================================================================
--- python/branches/p3yk/Objects/object.c       (original)
+++ python/branches/p3yk/Objects/object.c       Tue Dec 19 22:35:46 2006
@@ -619,7 +619,7 @@
 /* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
 int _Py_SwappedOp[] = {Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE};
 
-static char *opstrings[] = {">", ">=", "==", "!=", "<", "<="};
+static char *opstrings[] = {"<", "<=", "==", "!=", ">", ">="};
 
 /* Perform a rich comparison, raising TypeError when the requested comparison
    operator is not supported. */
@@ -659,6 +659,7 @@
                res = (v != w) ? Py_True : Py_False;
                break;
        default:
+               /* XXX Special-case None so it doesn't show as NoneType() */
                PyErr_Format(PyExc_TypeError,
                             "unorderable types: %.100s() %s %.100s()",
                             v->ob_type->tp_name,
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to