Rename _Py_identifier to _Py_IDENTIFIER.

This commit is contained in:
Martin v. Löwis 2011-10-14 10:20:37 +02:00
parent 01277d166a
commit bd928fef42
57 changed files with 262 additions and 262 deletions

View file

@ -2707,7 +2707,7 @@ dictviews_sub(PyObject* self, PyObject *other)
{
PyObject *result = PySet_New(self);
PyObject *tmp;
_Py_identifier(difference_update);
_Py_IDENTIFIER(difference_update);
if (result == NULL)
return NULL;
@ -2727,7 +2727,7 @@ dictviews_and(PyObject* self, PyObject *other)
{
PyObject *result = PySet_New(self);
PyObject *tmp;
_Py_identifier(intersection_update);
_Py_IDENTIFIER(intersection_update);
if (result == NULL)
return NULL;
@ -2767,7 +2767,7 @@ dictviews_xor(PyObject* self, PyObject *other)
{
PyObject *result = PySet_New(self);
PyObject *tmp;
_Py_identifier(symmetric_difference_update);
_Py_IDENTIFIER(symmetric_difference_update);
if (result == NULL)
return NULL;