diff options
author | Georg Brandl <georg@python.org> | 2008-03-25 08:31:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-25 08:31:32 (GMT) |
commit | d65ab950c10b0a819d99837f83f601c443fa20f0 (patch) | |
tree | 371d99de91eae3181a711a511e2c22f0be538401 /Objects/dictobject.c | |
parent | d5b635f1969fdd609f0aff5669c9ec30e61be62e (diff) | |
download | cpython-d65ab950c10b0a819d99837f83f601c443fa20f0.zip cpython-d65ab950c10b0a819d99837f83f601c443fa20f0.tar.gz cpython-d65ab950c10b0a819d99837f83f601c443fa20f0.tar.bz2 |
Fix tabs.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index b897118..d552098 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -1779,7 +1779,7 @@ dict_richcompare(PyObject *v, PyObject *w, int op) else { /* Py3K warning if comparison isn't == or != */ if (Py_Py3kWarningFlag && - PyErr_Warn(PyExc_DeprecationWarning, + PyErr_Warn(PyExc_DeprecationWarning, "dict inequality comparisons not supported " "in 3.x") < 0) { return NULL; |