summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-11-29 18:33:01 (GMT)
committerGeorg Brandl <georg@python.org>2007-11-29 18:33:01 (GMT)
commitede3a3218e3c363f9fbfe9f2c365d1a37abc7487 (patch)
tree89dd4d5f45f14b01207124941c876ad874abe468 /Objects
parent31645ba4a06dcd66e84d6fdd611c5ad02401fa8c (diff)
downloadcpython-ede3a3218e3c363f9fbfe9f2c365d1a37abc7487.zip
cpython-ede3a3218e3c363f9fbfe9f2c365d1a37abc7487.tar.gz
cpython-ede3a3218e3c363f9fbfe9f2c365d1a37abc7487.tar.bz2
Spaces vs. Tabs.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index cd1338a..bfb093b 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -270,9 +270,9 @@ lookdict(PyDictObject *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) {
@@ -302,9 +302,9 @@ lookdict(PyDictObject *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) {