Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56976c commit 50d5a1cCopy full SHA for 50d5a1c
1 file changed
Python/ast.c
@@ -51,9 +51,10 @@ static identifier
51
new_identifier(const char* n, PyArena *arena)
52
{
53
PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
54
+ Py_UNICODE *u;
55
if (!id)
56
return NULL;
- Py_UNICODE *u = PyUnicode_AS_UNICODE(id);
57
+ u = PyUnicode_AS_UNICODE(id);
58
/* Check whether there are non-ASCII characters in the
59
identifier; if so, normalize to NFKC. */
60
for (; *u; u++) {
0 commit comments