mirror of
https://github.com/python/cpython.git
synced 2025-07-23 19:25:40 +00:00
Fixed a compiler warning
This commit is contained in:
parent
ba55818a3a
commit
3bae65bacd
1 changed files with 3 additions and 1 deletions
|
@ -517,10 +517,12 @@ test_u_code(PyObject *self)
|
||||||
PyObject *tuple, *obj;
|
PyObject *tuple, *obj;
|
||||||
Py_UNICODE *value;
|
Py_UNICODE *value;
|
||||||
Py_ssize_t len;
|
Py_ssize_t len;
|
||||||
|
int x;
|
||||||
|
|
||||||
/* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
|
/* issue4122: Undefined reference to _Py_ascii_whitespace on Windows */
|
||||||
/* Just use the macro and check that it compiles */
|
/* Just use the macro and check that it compiles */
|
||||||
int x = Py_UNICODE_ISSPACE(25);
|
x = Py_UNICODE_ISSPACE(25);
|
||||||
|
x = x;
|
||||||
|
|
||||||
tuple = PyTuple_New(1);
|
tuple = PyTuple_New(1);
|
||||||
if (tuple == NULL)
|
if (tuple == NULL)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue