mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
put * in the normal place
This commit is contained in:
parent
c5d7518a2e
commit
c7dedb0945
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue