From 87655e2cf58c543914ea05ebe5a0377441da1ef2 Mon Sep 17 00:00:00 2001 From: Steve Dower Date: Fri, 30 Apr 2021 01:08:55 +0100 Subject: bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736) --- Python/traceback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python') diff --git a/Python/traceback.c b/Python/traceback.c index 5fa6e50d33..470324b1af 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 */ -- cgit v1.2.1