From: Georg Brandl Date: Tue, 25 Mar 2008 08:31:32 +0000 (+0000) Subject: Fix tabs. X-Git-Tag: v2.6a2~120 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d65ab950c10b0a819d99837f83f601c443fa20f0;p=python Fix tabs. --- diff --git a/Objects/cellobject.c b/Objects/cellobject.c index b86739edb3..46955ab6e2 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c @@ -56,7 +56,7 @@ cell_compare(PyCellObject *a, PyCellObject *b) { /* Py3K warning for comparisons */ if (Py_Py3kWarningFlag && - PyErr_Warn(PyExc_DeprecationWarning, + PyErr_Warn(PyExc_DeprecationWarning, "cell comparisons not supported in 3.x") < 0) { return -2; } diff --git a/Objects/dictobject.c b/Objects/dictobject.c index b8971180a4..d55209890d 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;