summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-29 18:33:04 (GMT)
committerGeorg Brandl <georg@python.org>2007-11-29 18:33:04 (GMT)
commita5463ab7de21ed6f9252a655156fbc6f48909bd5 (patch)
treed1882e4613078aed294be48a071c43cb0967d180
parentdbe97b38be8e614783316ec59061caa7d53bf47b (diff)
downloadcpython-a5463ab7de21ed6f9252a655156fbc6f48909bd5.zip
cpython-a5463ab7de21ed6f9252a655156fbc6f48909bd5.tar.gz
cpython-a5463ab7de21ed6f9252a655156fbc6f48909bd5.tar.bz2
Spaces vs. Tabs.
(backport from rev. 59224)
-rw-r--r--Objects/dictobject.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index a315446..412d5f2 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -272,9 +272,9 @@ lookdict(dictobject *mp, PyObject *key, register long hash)
else {
if (ep->me_hash == hash) {
startkey = ep->me_key;
- Py_INCREF(startkey);
+ Py_INCREF(startkey);
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
- Py_DECREF(startkey);
+ Py_DECREF(startkey);
if (cmp < 0)
return NULL;
if (ep0 == mp->ma_table && ep->me_key == startkey) {
@@ -304,9 +304,9 @@ lookdict(dictobject *mp, PyObject *key, register long hash)
return ep;
if (ep->me_hash == hash && ep->me_key != dummy) {
startkey = ep->me_key;
- Py_INCREF(startkey);
+ Py_INCREF(startkey);
cmp = PyObject_RichCompareBool(startkey, key, Py_EQ);
- Py_DECREF(startkey);
+ Py_DECREF(startkey);
if (cmp < 0)
return NULL;
if (ep0 == mp->ma_table && ep->me_key == startkey) {