From: Benjamin Peterson Date: Sun, 2 Sep 2012 20:36:01 +0000 (-0400) Subject: put * in the normal place X-Git-Tag: v3.2.4rc1~573 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7dedb09453705210b3126ccc86c1df6f03fa8f3;p=thirdparty%2FPython%2Fcpython.git put * in the normal place --- diff --git a/Python/ast.c b/Python/ast.c index d2bf032c5095..4ae9d75d0344 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;