summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-11-12 09:04:04 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-11-12 09:04:04 (GMT)
commit727c2c5d658b3933e4f971089c04bcf73c8c3975 (patch)
tree8110cdc2d3f89a9540d5b5df9a6cd6951407dc6c
parent3be2f0454aa0d2e77e85eed36b8988f93d6361eb (diff)
downloadcpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.zip
cpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.tar.gz
cpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.tar.bz2
Style fix, use tab instead of space
-rw-r--r--Modules/_testcapimodule.c4
1 files changed, 2 insertions, 2 deletions
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 @@ 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)