[Python-checkins] r58198 - python/trunk/Objects/abstract.c

thomas.wouters python-checkins at python.org
Wed Sep 19 01:27:30 CEST 2007


Author: thomas.wouters
Date: Wed Sep 19 01:27:30 2007
New Revision: 58198

Modified:
   python/trunk/Objects/abstract.c
Log:

Properly indent two lines. (Spotted because it caused merge conflicts in the
py3k branch ;)



Modified: python/trunk/Objects/abstract.c
==============================================================================
--- python/trunk/Objects/abstract.c	(original)
+++ python/trunk/Objects/abstract.c	Wed Sep 19 01:27:30 2007
@@ -2300,7 +2300,7 @@
 		}
 		return ok;
 	}
-    return recursive_isinstance(inst, cls, Py_GetRecursionLimit());
+	return recursive_isinstance(inst, cls, Py_GetRecursionLimit());
 }
 
 static  int
@@ -2374,7 +2374,7 @@
 		}
 		return ok;
 	}
-    return recursive_issubclass(derived, cls, Py_GetRecursionLimit());
+	return recursive_issubclass(derived, cls, Py_GetRecursionLimit());
 }
 
 


More information about the Python-checkins mailing list