commit | c7dedb09453705210b3126ccc86c1df6f03fa8f3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Sep 02 16:36:01 2012 -0400 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Sep 02 16:36:01 2012 -0400 |
tree | e6d572baf677a8da06ec45cbb656b6e004ea5dbd | |
parent | c5d7518a2eb139172f324a3c6a1ea78ee312b1a5 [diff] |
put * in the normal place
diff --git a/Python/ast.c b/Python/ast.c index d2bf032..4ae9d75 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -47,9 +47,9 @@ #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;