diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-09-02 16:36:01 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-09-02 16:36:01 -0400 |
commit | 7adf89dcd555f797b13a0ef01ef7fd575049bc6f (patch) | |
tree | eef530234b92961cc8dacbea555c3022602ef420 /Python/ast.c | |
parent | 7d96d7d7b276c25a5b0c530c905c5f5e51127b86 (diff) | |
download | cpython-7adf89dcd555f797b13a0ef01ef7fd575049bc6f.tar.gz |
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 d2bf032c50..4ae9d75d03 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; |