[Python-3000-checkins] r57557 - python/branches/py3k/Objects/unicodeobject.c

eric.smith python-3000-checkins at python.org
Mon Aug 27 13:33:42 CEST 2007


Author: eric.smith
Date: Mon Aug 27 13:33:42 2007
New Revision: 57557

Modified:
   python/branches/py3k/Objects/unicodeobject.c
Log:
Fixed accidental indentation change.

Modified: python/branches/py3k/Objects/unicodeobject.c
==============================================================================
--- python/branches/py3k/Objects/unicodeobject.c	(original)
+++ python/branches/py3k/Objects/unicodeobject.c	Mon Aug 27 13:33:42 2007
@@ -598,7 +598,7 @@
 			 */
 			if ((*f == 'l' || *f == 'z') &&
 					(f[1] == 'd' || f[1] == 'u'))
-			++f;
+                                ++f;
 
 			switch (*f) {
 			case 'c':


More information about the Python-3000-checkins mailing list