diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-09-02 20:36:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-09-02 20:36:01 (GMT) |
commit | c7dedb09453705210b3126ccc86c1df6f03fa8f3 (patch) | |
tree | e6d572baf677a8da06ec45cbb656b6e004ea5dbd /Python/ast.c | |
parent | c5d7518a2eb139172f324a3c6a1ea78ee312b1a5 (diff) | |
download | cpython-c7dedb09453705210b3126ccc86c1df6f03fa8f3.zip cpython-c7dedb09453705210b3126ccc86c1df6f03fa8f3.tar.gz cpython-c7dedb09453705210b3126ccc86c1df6f03fa8f3.tar.bz2 |
put * in the normal place
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ 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; |