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/_collectionsmodule.c | |
parent | 01277d166a993742814c772d01987fbaafb528d4 (diff) | |
download | cpython-git-bd928fef428e48084ff29ece0e21d07ad86d0793.tar.gz |
Rename _Py_identifier to _Py_IDENTIFIER.
Diffstat (limited to 'Modules/_collectionsmodule.c')
-rw-r--r-- | Modules/_collectionsmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c index 0c68aa85ed..efce5ce8a4 100644 --- a/Modules/_collectionsmodule.c +++ b/Modules/_collectionsmodule.c @@ -767,7 +767,7 @@ static PyObject * deque_reduce(dequeobject *deque) { PyObject *dict, *result, *aslist; - _Py_identifier(__dict__); + _Py_IDENTIFIER(__dict__); dict = _PyObject_GetAttrId((PyObject *)deque, &PyId___dict__); if (dict == NULL) @@ -1335,7 +1335,7 @@ defdict_reduce(defdictobject *dd) PyObject *items; PyObject *iter; PyObject *result; - _Py_identifier(items); + _Py_IDENTIFIER(items); if (dd->default_factory == NULL || dd->default_factory == Py_None) args = PyTuple_New(0); |