From: Georg Brandl Date: Fri, 3 Sep 2010 10:52:55 +0000 (+0000) Subject: Reindent. X-Git-Tag: v3.2a2~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2d444496b39c091be4104125ab61c810654d7a40;p=thirdparty%2FPython%2Fcpython.git Reindent. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index 6cd90b1f164d..7eac1aa9c1e7 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -1650,7 +1650,7 @@ set_symmetric_difference_update(PySetObject *so, PyObject *other) an_entry.key = key; rv = set_discard_entry(so, &an_entry); - if (rv == -1) { + if (rv == -1) { Py_DECREF(key); return NULL; } @@ -1660,7 +1660,7 @@ set_symmetric_difference_update(PySetObject *so, PyObject *other) return NULL; } } - Py_DECREF(key); + Py_DECREF(key); } Py_RETURN_NONE; }