[Python-checkins] r59225 - python/branches/release25-maint/Objects/dictobject.c

georg.brandl python-checkins at python.org
Thu Nov 29 19:33:04 CET 2007


Author: georg.brandl
Date: Thu Nov 29 19:33:04 2007
New Revision: 59225

Modified:
   python/branches/release25-maint/Objects/dictobject.c
Log:
Spaces vs. Tabs.
 (backport from rev. 59224)

Modified: python/branches/release25-maint/Objects/dictobject.c
==============================================================================
--- python/branches/release25-maint/Objects/dictobject.c	(original)
+++ python/branches/release25-maint/Objects/dictobject.c	Thu Nov 29 19:33:04 2007
@@ -272,9 +272,9 @@
 	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 @@
 			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) {


More information about the Python-checkins mailing list