put * in the normal place

This commit is contained in:
Benjamin Peterson 2012-09-02 16:36:01 -04:00
parent c5d7518a2e
commit c7dedb0945

View File

@ -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;