Skip to content

Commit c7dedb0

Browse files
committed
put * in the normal place
1 parent c5d7518 commit c7dedb0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Python/ast.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ static PyObject *parsestrplus(struct compiling *, const node *n,
4747
#define COMP_SETCOMP 2
4848

4949
static identifier
50-
new_identifier(const char* n, PyArena *arena)
50+
new_identifier(const char *n, PyArena *arena)
5151
{
52-
PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
52+
PyObject *id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
5353
Py_UNICODE *u;
5454
if (!id)
5555
return NULL;

0 commit comments

Comments
 (0)