merge 3.2
diff --git a/Python/ast.c b/Python/ast.c
index aca5b09..43c18f4 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -545,9 +545,9 @@
 }
 
 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. */