This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: sys.addaudithook event is not documented
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, miss-islington, steve.dower
Priority: normal Keywords: patch

Created on 2019-10-10 16:25 by steve.dower, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16932 merged steve.dower, 2019-10-26 19:52
PR 16936 merged miss-islington, 2019-10-26 20:02
Messages (4)
msg354396 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-10-10 16:25
The sys.addaudithook raises an audit event 'sys.addaudithook'.

The docs for the function refer to the event, as it has slightly different semantics than most, but it is not named explicitly and does not appear in the table of events.
msg355386 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-10-25 21:15
The import audit event is also not documented.
msg355427 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2019-10-26 20:02
New changeset 894e30ce0bcc1c509eb01c8ffa9ba6d7701aeaaf by Steve Dower in branch 'master':
bpo-38434: Fixes some audit event documentation (GH-16932)
https://github.com/python/cpython/commit/894e30ce0bcc1c509eb01c8ffa9ba6d7701aeaaf
msg355431 - (view) Author: miss-islington (miss-islington) Date: 2019-10-26 20:09
New changeset 11f0f11c4859f5ca201cd40b379b13c65f05ec91 by Miss Skeleton (bot) in branch '3.8':
bpo-38434: Fixes some audit event documentation (GH-16932)
https://github.com/python/cpython/commit/11f0f11c4859f5ca201cd40b379b13c65f05ec91
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82615
2019-10-26 20:09:38miss-islingtonsetnosy: + miss-islington
messages: + msg355431
2019-10-26 20:03:46steve.dowersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-10-26 20:02:41miss-islingtonsetpull_requests: + pull_request16465
2019-10-26 20:02:33steve.dowersetmessages: + msg355427
2019-10-26 19:52:26steve.dowersetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request16461
2019-10-25 21:15:13steve.dowersetmessages: + msg355386
2019-10-10 16:25:03steve.dowercreate