mirror of
https://github.com/python/cpython.git
synced 2025-08-24 10:45:53 +00:00
bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519)
This commit is contained in:
parent
1b55b65638
commit
3d235f5c5c
1 changed files with 2 additions and 2 deletions
|
@ -12207,8 +12207,8 @@ PyUnicode_IsIdentifier(PyObject *self)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int kind;
|
||||
void *data;
|
||||
int kind = 0;
|
||||
void *data = NULL;
|
||||
wchar_t *wstr;
|
||||
if (ready) {
|
||||
kind = PyUnicode_KIND(self);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue