mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int kind;
|
int kind = 0;
|
||||||
void *data;
|
void *data = NULL;
|
||||||
wchar_t *wstr;
|
wchar_t *wstr;
|
||||||
if (ready) {
|
if (ready) {
|
||||||
kind = PyUnicode_KIND(self);
|
kind = PyUnicode_KIND(self);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue