summaryrefslogtreecommitdiffstats
path: root/Doc/library/audit_events.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)Ryan Hileman2021-04-291-1/+1
| | | | | | | | | | Accessing the following attributes will now fire PEP 578 style audit hooks as ("object.__getattr__", obj, name): * PyTracebackObject: tb_frame * PyFrameObject: f_code * PyGenObject: gi_code, gi_frame * PyCoroObject: cr_code, cr_frame * PyAsyncGenObject: ag_code, ag_frame Add an AUDIT_READ attribute flag aliased to READ_RESTRICTED. Update obsolete flag documentation.
* bpo-41192: Add documentation of undocumented audit events (GH-21308)Saiyang Gou2020-10-201-0/+26
|
* bpo-38892: Improve docs for audit event (GH-17361)Terry Jan Reedy2019-11-261-1/+1
|
* bpo-37390: Add audit event table to documentations (GH-14406)Steve Dower2019-06-271-0/+21
Also updates some (unreleased) event names to be consistent with the others.