From c7dedb09453705210b3126ccc86c1df6f03fa8f3 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 2 Sep 2012 16:36:01 -0400 Subject: [PATCH] put * in the normal place --- Python/ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/ast.c b/Python/ast.c index d2bf032c509..4ae9d75d034 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -47,9 +47,9 @@ static PyObject *parsestrplus(struct compiling *, const node *n, #define COMP_SETCOMP 2 static identifier -new_identifier(const char* n, PyArena *arena) +new_identifier(const char *n, PyArena *arena) { - PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL); + PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL); Py_UNICODE *u; if (!id) return NULL;