summaryrefslogtreecommitdiff
path: root/Python/ast.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2011-10-14 10:20:37 +0200
committerMartin v. Löwis <martin@v.loewis.de>2011-10-14 10:20:37 +0200
commitf5ad3b280b43227eb0e3fa63d89490a58ba9c28b (patch)
treee770b84e397d28b1686fd80240ac862eb4b80d08 /Python/ast.c
parent61693a2699ecb5351d3b1403c47a3de6f633de72 (diff)
downloadcpython-f5ad3b280b43227eb0e3fa63d89490a58ba9c28b.tar.gz
Rename _Py_identifier to _Py_IDENTIFIER.
Diffstat (limited to 'Python/ast.c')
-rw-r--r--Python/ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c
index 987297924e..48aef4815d 100644
--- a/Python/ast.c
+++ b/Python/ast.c
@@ -527,7 +527,7 @@ static PyObject *parsestrplus(struct compiling *, const node *n,
static identifier
new_identifier(const char* n, PyArena *arena)
{
- _Py_identifier(normalize);
+ _Py_IDENTIFIER(normalize);
PyObject* id = PyUnicode_DecodeUTF8(n, strlen(n), NULL);
if (!id || PyUnicode_READY(id) == -1)
return NULL;