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.
2 parents bd0df50 + c7dedb0 commit d40528fCopy full SHA for d40528f
1 file changed
Python/ast.c
@@ -545,9 +545,9 @@ init_normalization(struct compiling *c)
545
}
546
547
static identifier
548
-new_identifier(const char* n, struct compiling *c)
+new_identifier(const char *n, struct compiling *c)
549
{
550
- PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
+ PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
551
if (!id)
552
return NULL;
553
/* PyUnicode_DecodeUTF8 should always return a ready string. */
0 commit comments