summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2021-04-30 00:08:55 (GMT)
committerGitHub <noreply@github.com>2021-04-30 00:08:55 (GMT)
commit87655e2cf58c543914ea05ebe5a0377441da1ef2 (patch)
tree768436c547182d733a35d98562e05ce41470ce35 /Python
parent9a2c2a9ec3140b6c54c9ef9d994311f114128ee3 (diff)
downloadcpython-87655e2cf58c543914ea05ebe5a0377441da1ef2.zip
cpython-87655e2cf58c543914ea05ebe5a0377441da1ef2.tar.gz
cpython-87655e2cf58c543914ea05ebe5a0377441da1ef2.tar.bz2
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Diffstat (limited to 'Python')
-rw-r--r--Python/traceback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/traceback.c b/Python/traceback.c
index 5fa6e50..470324b1 100644
--- a/Python/traceback.c
+++ b/Python/traceback.c
@@ -147,7 +147,7 @@ static PyMethodDef tb_methods[] = {
};
static PyMemberDef tb_memberlist[] = {
- {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY|AUDIT_READ},
+ {"tb_frame", T_OBJECT, OFF(tb_frame), READONLY|PY_AUDIT_READ},
{"tb_lasti", T_INT, OFF(tb_lasti), READONLY},
{"tb_lineno", T_INT, OFF(tb_lineno), READONLY},
{NULL} /* Sentinel */