Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-42800: add audit hooks for f_code and tb_frame (GH-24182) | Ryan Hileman | 2021-04-29 | 1 | -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 Gou | 2020-10-20 | 1 | -0/+26 |
| | |||||
* | bpo-38892: Improve docs for audit event (GH-17361) | Terry Jan Reedy | 2019-11-26 | 1 | -1/+1 |
| | |||||
* | bpo-37390: Add audit event table to documentations (GH-14406) | Steve Dower | 2019-06-27 | 1 | -0/+21 |
Also updates some (unreleased) event names to be consistent with the others. |