cleanup indentation

This commit is contained in:
Jeremy Hylton 2001-10-22 16:30:36 +00:00
parent 32e3232a55
commit 39a362d9f4

View file

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