summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index b15e76e..c1a1303 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -550,6 +550,12 @@ default_3way_compare(PyObject *v, PyObject *w)
PyErr_Clear();
}
+ /* None is smaller than anything */
+ if (v == Py_None)
+ return -1;
+ if (w == Py_None)
+ return 1;
+
/* different type: compare type names */
if (v->ob_type->tp_as_number)
vname = "";