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 | f5ad3b280b43227eb0e3fa63d89490a58ba9c28b (patch) | |
tree | e770b84e397d28b1686fd80240ac862eb4b80d08 /Python/errors.c | |
parent | 61693a2699ecb5351d3b1403c47a3de6f633de72 (diff) | |
download | cpython-f5ad3b280b43227eb0e3fa63d89490a58ba9c28b.tar.gz |
Rename _Py_identifier to _Py_IDENTIFIER.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index 5988e1bf89..998bef6a67 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -712,7 +712,7 @@ PyErr_NewExceptionWithDoc(const char *name, const char *doc, void PyErr_WriteUnraisable(PyObject *obj) { - _Py_identifier(__module__); + _Py_IDENTIFIER(__module__); PyObject *f, *t, *v, *tb; PyErr_Fetch(&t, &v, &tb); f = PySys_GetObject("stderr"); |