]> granicus.if.org Git - python/commitdiff
Fix tabs.
authorGeorg Brandl <georg@python.org>
Tue, 25 Mar 2008 08:31:32 +0000 (08:31 +0000)
committerGeorg Brandl <georg@python.org>
Tue, 25 Mar 2008 08:31:32 +0000 (08:31 +0000)
Objects/cellobject.c
Objects/dictobject.c

index b86739edb3295070eadaedd8e3b4a44858876685..46955ab6e2ea635224f97a71ed17fe10c360ef75 100644 (file)
@@ -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;
        }
index b8971180a4986e1a11fa0e816fa7838cffde10ff..d55209890dfe51f901d35c08296915309b795c69 100644 (file)
@@ -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;