summaryrefslogtreecommitdiff
path: root/Modules/faulthandler.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
commitbd928fef428e48084ff29ece0e21d07ad86d0793 (patch)
tree0fd61d271dabb554cc4824e7e80b4c6d915f6ae2 /Modules/faulthandler.c
parent01277d166a993742814c772d01987fbaafb528d4 (diff)
downloadcpython-git-bd928fef428e48084ff29ece0e21d07ad86d0793.tar.gz
Rename _Py_identifier to _Py_IDENTIFIER.
Diffstat (limited to 'Modules/faulthandler.c')
-rw-r--r--Modules/faulthandler.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/faulthandler.c b/Modules/faulthandler.c
index 11d5340004..51c66bdd65 100644
--- a/Modules/faulthandler.c
+++ b/Modules/faulthandler.c
@@ -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;