[Python-checkins] r61880 - python/trunk/Objects/cellobject.c python/trunk/Objects/dictobject.c

georg.brandl python-checkins at python.org
Tue Mar 25 09:31:32 CET 2008


Author: georg.brandl
Date: Tue Mar 25 09:31:32 2008
New Revision: 61880

Modified:
   python/trunk/Objects/cellobject.c
   python/trunk/Objects/dictobject.c
Log:
Fix tabs.


Modified: python/trunk/Objects/cellobject.c
==============================================================================
--- python/trunk/Objects/cellobject.c	(original)
+++ python/trunk/Objects/cellobject.c	Tue Mar 25 09:31:32 2008
@@ -56,7 +56,7 @@
 {
 	/* Py3K warning for comparisons  */
 	if (Py_Py3kWarningFlag &&
-            PyErr_Warn(PyExc_DeprecationWarning,
+	    PyErr_Warn(PyExc_DeprecationWarning,
 		       "cell comparisons not supported in 3.x") < 0) {
 		return -2;
 	}

Modified: python/trunk/Objects/dictobject.c
==============================================================================
--- python/trunk/Objects/dictobject.c	(original)
+++ python/trunk/Objects/dictobject.c	Tue Mar 25 09:31:32 2008
@@ -1779,7 +1779,7 @@
 	else {
 		/* Py3K warning if comparison isn't == or !=  */
 		if (Py_Py3kWarningFlag &&
-                    PyErr_Warn(PyExc_DeprecationWarning,
+		    PyErr_Warn(PyExc_DeprecationWarning,
 			       "dict inequality comparisons not supported "
 			       "in 3.x") < 0) {
 			return NULL;


More information about the Python-checkins mailing list