diff options
Diffstat (limited to 'Modules/_testcapimodule.c')
-rw-r--r-- | Modules/_testcapimodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index b1cb6fe2404..4d2e831934e 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -518,6 +518,10 @@ test_u_code(PyObject *self) Py_UNICODE *value; Py_ssize_t len; + /* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */ + /* Just use the macro and check that it compiles */ + int x = Py_UNICODE_ISSPACE(25); + tuple = PyTuple_New(1); if (tuple == NULL) return NULL; |