Style fix, use tab instead of space
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c
index 3ae5461..e485ed8 100644
--- a/Modules/_testcapimodule.c
+++ b/Modules/_testcapimodule.c
@@ -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)