summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-03 10:52:55 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-03 10:52:55 (GMT)
commit2d444496b39c091be4104125ab61c810654d7a40 (patch)
tree8d8495495d1778d9161758cb74625b98a1ad7c53
parentfaf7b7f4ec58a26cc4044dd29c7dd8ebdfb65269 (diff)
downloadcpython-2d444496b39c091be4104125ab61c810654d7a40.zip
cpython-2d444496b39c091be4104125ab61c810654d7a40.tar.gz
cpython-2d444496b39c091be4104125ab61c810654d7a40.tar.bz2
Reindent.
-rw-r--r--Objects/setobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index 6cd90b1..7eac1aa 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;
}