Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d40528f

Browse files
committed
merge 3.2
2 parents bd0df50 + c7dedb0 commit d40528f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/ast.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -545,9 +545,9 @@ init_normalization(struct compiling *c)
545545
}
546546

547547
static identifier
548-
new_identifier(const char* n, struct compiling *c)
548+
new_identifier(const char *n, struct compiling *c)
549549
{
550-
PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
550+
PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
551551
if (!id)
552552
return NULL;
553553
/* PyUnicode_DecodeUTF8 should always return a ready string. */

0 commit comments

Comments
 (0)