Rename _Py_identifier to _Py_IDENTIFIER.
diff --git a/Python/traceback.c b/Python/traceback.c
index 44358ed..2f4653b 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -152,7 +152,7 @@
const char* filepath;
Py_ssize_t len;
PyObject* result;
- _Py_identifier(open);
+ _Py_IDENTIFIER(open);
filebytes = PyUnicode_EncodeFSDefault(filename);
if (filebytes == NULL) {
@@ -232,9 +232,9 @@
char buf[MAXPATHLEN+1];
int kind;
void *data;
- _Py_identifier(close);
- _Py_identifier(open);
- _Py_identifier(TextIOWrapper);
+ _Py_IDENTIFIER(close);
+ _Py_IDENTIFIER(open);
+ _Py_IDENTIFIER(TextIOWrapper);
/* open the file */
if (filename == NULL)