diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-19 17:45:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-19 17:45:19 (GMT) |
commit | 05387861ea96dc7603519f00d95dcd7ad61b8919 (patch) | |
tree | bc21af8b9c113f5002dffa98aaa61babb70b9505 /Objects | |
parent | 977eb021f318fcb6558aa22fcf3131e72e2ad319 (diff) | |
download | cpython-05387861ea96dc7603519f00d95dcd7ad61b8919.zip cpython-05387861ea96dc7603519f00d95dcd7ad61b8919.tar.gz cpython-05387861ea96dc7603519f00d95dcd7ad61b8919.tar.bz2 |
Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/listobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/listobject.c b/Objects/listobject.c index 9e86592..d4faf0a 100644 --- a/Objects/listobject.c +++ b/Objects/listobject.c @@ -2037,7 +2037,7 @@ listsort(PyListObject *self, PyObject *args, PyObject *kwds) } if (compare == Py_None) compare = NULL; - if (compare == NULL && + if (compare != NULL && Py_Py3kWarningFlag && PyErr_Warn(PyExc_DeprecationWarning, "In 3.x, the cmp argument is no longer supported.") < 0) |