diff options
author | Christian Heimes <christian@cheimes.de> | 2008-11-12 09:04:04 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-11-12 09:04:04 (GMT) |
commit | 727c2c5d658b3933e4f971089c04bcf73c8c3975 (patch) | |
tree | 8110cdc2d3f89a9540d5b5df9a6cd6951407dc6c /Modules/_testcapimodule.c | |
parent | 3be2f0454aa0d2e77e85eed36b8988f93d6361eb (diff) | |
download | cpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.zip cpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.tar.gz cpython-727c2c5d658b3933e4f971089c04bcf73c8c3975.tar.bz2 |
Style fix, use tab instead of space
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r-- | Modules/_testcapimodule.c | 4 |
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) |