[Python-3000-checkins] r67201 - python/branches/py3k/Modules/_testcapimodule.c

christian.heimes python-3000-checkins at python.org
Wed Nov 12 10:04:04 CET 2008


Author: christian.heimes
Date: Wed Nov 12 10:04:04 2008
New Revision: 67201

Log:
Style fix, use tab instead of space

Modified:
   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 Nov 12 10:04:04 2008
@@ -521,8 +521,8 @@
 
 	/* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
 	/* Just use the macro and check that it compiles */
-        x = Py_UNICODE_ISSPACE(25);
-        x = x;
+	x = Py_UNICODE_ISSPACE(25);
+	x = x;
 
         tuple = PyTuple_New(1);
         if (tuple == NULL)


More information about the Python-3000-checkins mailing list