summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-10-22 16:30:36 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-10-22 16:30:36 (GMT)
commit39a362d9f4ed436151d32faf9d5c963c33c5d855 (patch)
tree493cba056a8e0bf522e18202ec347e492ef965d0
parent32e3232a550bd3d6c8ed1f2e396baaac5fa4a3c8 (diff)
downloadcpython-39a362d9f4ed436151d32faf9d5c963c33c5d855.zip
cpython-39a362d9f4ed436151d32faf9d5c963c33c5d855.tar.gz
cpython-39a362d9f4ed436151d32faf9d5c963c33c5d855.tar.bz2
cleanup indentation
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index aa5f87c..5c2dcf5 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -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) {