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

@ -146,8 +146,8 @@ static PyObject*
faulthandler_get_fileno(PyObject *file, int *p_fd)
{
PyObject *result;
_Py_identifier(fileno);
_Py_identifier(flush);
_Py_IDENTIFIER(fileno);
_Py_IDENTIFIER(flush);
long fd_long;
int fd;
@ -1199,7 +1199,7 @@ static int
faulthandler_env_options(void)
{
PyObject *xoptions, *key, *module, *res;
_Py_identifier(enable);
_Py_IDENTIFIER(enable);
if (!Py_GETENV("PYTHONFAULTHANDLER")) {
int has_key;