[Python-checkins] r72369 - in python/branches/py3k: Modules/_testcapimodule.c

benjamin.peterson python-checkins at python.org
Wed May 6 01:14:15 CEST 2009


Author: benjamin.peterson
Date: Wed May  6 01:14:15 2009
New Revision: 72369

Log:
Merged revisions 72367 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72367 | benjamin.peterson | 2009-05-05 18:00:48 -0500 (Tue, 05 May 2009) | 1 line
  
  tabify :(
........


Modified:
   python/branches/py3k/   (props changed)
   python/branches/py3k/Modules/_testcapimodule.c

Modified: python/branches/py3k/Modules/_testcapimodule.c
==============================================================================
--- python/branches/py3k/Modules/_testcapimodule.c	(original)
+++ python/branches/py3k/Modules/_testcapimodule.c	Wed May  6 01:14:15 2009
@@ -228,10 +228,10 @@
 
 	type = &_HashInheritanceTester_Type;
 
-        if (type->tp_dict != NULL)
-            /* The type has already been initialized. This probably means -R
-             is being used. */
-            Py_RETURN_NONE;
+	if (type->tp_dict != NULL)
+		/* The type has already been initialized. This probably means
+		   -R is being used. */
+		Py_RETURN_NONE;
 
 
 	obj = PyObject_New(PyObject, type);
@@ -277,7 +277,7 @@
 		return NULL;
 	}
 
-        Py_DECREF(obj);
+	Py_DECREF(obj);
 
 	Py_RETURN_NONE;
 }


More information about the Python-checkins mailing list