@@ -741,8 +741,8 @@ static PyGetSetDef gen_getsetlist[] = {
741741};
742742
743743static PyMemberDef gen_memberlist [] = {
744- {"gi_frame" , T_OBJECT , offsetof(PyGenObject , gi_frame ), READONLY |AUDIT_READ },
745- {"gi_code" , T_OBJECT , offsetof(PyGenObject , gi_code ), READONLY |AUDIT_READ },
744+ {"gi_frame" , T_OBJECT , offsetof(PyGenObject , gi_frame ), READONLY |PY_AUDIT_READ },
745+ {"gi_code" , T_OBJECT , offsetof(PyGenObject , gi_code ), READONLY |PY_AUDIT_READ },
746746 {NULL } /* Sentinel */
747747};
748748
@@ -978,8 +978,8 @@ static PyGetSetDef coro_getsetlist[] = {
978978};
979979
980980static PyMemberDef coro_memberlist [] = {
981- {"cr_frame" , T_OBJECT , offsetof(PyCoroObject , cr_frame ), READONLY |AUDIT_READ },
982- {"cr_code" , T_OBJECT , offsetof(PyCoroObject , cr_code ), READONLY |AUDIT_READ },
981+ {"cr_frame" , T_OBJECT , offsetof(PyCoroObject , cr_frame ), READONLY |PY_AUDIT_READ },
982+ {"cr_code" , T_OBJECT , offsetof(PyCoroObject , cr_code ), READONLY |PY_AUDIT_READ },
983983 {"cr_origin" , T_OBJECT , offsetof(PyCoroObject , cr_origin ), READONLY },
984984 {NULL } /* Sentinel */
985985};
@@ -1360,10 +1360,10 @@ static PyGetSetDef async_gen_getsetlist[] = {
13601360};
13611361
13621362static PyMemberDef async_gen_memberlist [] = {
1363- {"ag_frame" , T_OBJECT , offsetof(PyAsyncGenObject , ag_frame ), READONLY |AUDIT_READ },
1363+ {"ag_frame" , T_OBJECT , offsetof(PyAsyncGenObject , ag_frame ), READONLY |PY_AUDIT_READ },
13641364 {"ag_running" , T_BOOL , offsetof(PyAsyncGenObject , ag_running_async ),
13651365 READONLY },
1366- {"ag_code" , T_OBJECT , offsetof(PyAsyncGenObject , ag_code ), READONLY |AUDIT_READ },
1366+ {"ag_code" , T_OBJECT , offsetof(PyAsyncGenObject , ag_code ), READONLY |PY_AUDIT_READ },
13671367 {NULL } /* Sentinel */
13681368};
13691369
0 commit comments