From: Christian Heimes Date: Wed, 12 Nov 2008 09:04:04 +0000 (+0000) Subject: Style fix, use tab instead of space X-Git-Tag: v3.0rc3~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=727c2c5d658b3933e4f971089c04bcf73c8c3975;p=python Style fix, use tab instead of space --- diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 3ae5461900..e485ed8f3b 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -521,8 +521,8 @@ test_u_code(PyObject *self) /* 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)