]> granicus.if.org Git - python/commitdiff
cleanup indentation
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 22 Oct 2001 16:30:36 +0000 (16:30 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 22 Oct 2001 16:30:36 +0000 (16:30 +0000)
Objects/object.c

index aa5f87cebe9088308abb97b6c0ea8244c83654b3..5c2dcf5b1668d0d6c95a756c6f553dcfc2f29be8 100644 (file)
@@ -732,7 +732,7 @@ PyObject_Compare(PyObject *v, PyObject *w)
 #if defined(USE_STACKCHECK)
        if (PyOS_CheckStack()) {
                PyErr_SetString(PyExc_MemoryError, "Stack overflow");
-        return -1;
+               return -1;
        }
 #endif
        if (v == NULL || w == NULL) {