[Python-checkins] r84448 - python/branches/py3k/Objects/setobject.c

georg.brandl python-checkins at python.org
Fri Sep 3 12:52:56 CEST 2010


Author: georg.brandl
Date: Fri Sep  3 12:52:55 2010
New Revision: 84448

Log:
Reindent.

Modified:
   python/branches/py3k/Objects/setobject.c

Modified: python/branches/py3k/Objects/setobject.c
==============================================================================
--- python/branches/py3k/Objects/setobject.c	(original)
+++ python/branches/py3k/Objects/setobject.c	Fri Sep  3 12:52:55 2010
@@ -1650,7 +1650,7 @@
             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 @@
                     return NULL;
                 }
             }
-			Py_DECREF(key);
+            Py_DECREF(key);
         }
         Py_RETURN_NONE;
     }


More information about the Python-checkins mailing list