diff options
| author | Martin v. Löwis <martin@v.loewis.de> | 2011-10-14 10:20:37 +0200 |
|---|---|---|
| committer | Martin v. Löwis <martin@v.loewis.de> | 2011-10-14 10:20:37 +0200 |
| commit | bd928fef428e48084ff29ece0e21d07ad86d0793 (patch) | |
| tree | 0fd61d271dabb554cc4824e7e80b4c6d915f6ae2 /Modules/pyexpat.c | |
| parent | 01277d166a993742814c772d01987fbaafb528d4 (diff) | |
| download | cpython-git-bd928fef428e48084ff29ece0e21d07ad86d0793.tar.gz | |
Rename _Py_identifier to _Py_IDENTIFIER.
Diffstat (limited to 'Modules/pyexpat.c')
| -rw-r--r-- | Modules/pyexpat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 45ab70ee69..1bc4ffafcd 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -843,7 +843,7 @@ xmlparse_ParseFile(xmlparseobject *self, PyObject *f) { int rv = 1; PyObject *readmethod = NULL; - _Py_identifier(read); + _Py_IDENTIFIER(read); readmethod = _PyObject_GetAttrId(f, &PyId_read); if (readmethod == NULL) { |
