Commit d40528fe authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.2

parents bd0df50f c7dedb09
......@@ -545,9 +545,9 @@ init_normalization(struct compiling *c)
}
static identifier
new_identifier(const char* n, struct compiling *c)
new_identifier(const char *n, struct compiling *c)
{
PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
if (!id)
return NULL;
/* PyUnicode_DecodeUTF8 should always return a ready string. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment