From: Georg Brandl Date: Thu, 29 Nov 2007 18:33:01 +0000 (+0000) Subject: Spaces vs. Tabs. X-Git-Tag: v2.6a1~985 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ede3a3218e3c363f9fbfe9f2c365d1a37abc7487;p=python Spaces vs. Tabs. --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index cd1338aed3..bfb093b1d2 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) {