mirror of
https://github.com/python/cpython.git
synced 2025-01-10 18:44:53 +08:00
9a2c2a9ec3
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.
48 lines
2.3 KiB
ReStructuredText
48 lines
2.3 KiB
ReStructuredText
.. _audit-events:
|
|
|
|
.. index:: single: audit events
|
|
|
|
Audit events table
|
|
==================
|
|
|
|
This table contains all events raised by :func:`sys.audit` or
|
|
:c:func:`PySys_Audit` calls throughout the CPython runtime and the
|
|
standard library. These calls were added in 3.8.0 or later (see :pep:`578`).
|
|
|
|
See :func:`sys.addaudithook` and :c:func:`PySys_AddAuditHook` for
|
|
information on handling these events.
|
|
|
|
.. impl-detail::
|
|
|
|
This table is generated from the CPython documentation, and may not
|
|
represent events raised by other implementations. See your runtime
|
|
specific documentation for actual events raised.
|
|
|
|
.. audit-event-table::
|
|
|
|
The following events are raised internally and do not correspond to any
|
|
public API of CPython:
|
|
|
|
+--------------------------+-------------------------------------------+
|
|
| Audit event | Arguments |
|
|
+==========================+===========================================+
|
|
| _winapi.CreateFile | ``file_name``, ``desired_access``, |
|
|
| | ``share_mode``, ``creation_disposition``, |
|
|
| | ``flags_and_attributes`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.CreateJunction | ``src_path``, ``dst_path`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.CreateNamedPipe | ``name``, ``open_mode``, ``pipe_mode`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.CreatePipe | |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.CreateProcess | ``application_name``, ``command_line``, |
|
|
| | ``current_directory`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.OpenProcess | ``process_id``, ``desired_access`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| _winapi.TerminateProcess | ``handle``, ``exit_code`` |
|
|
+--------------------------+-------------------------------------------+
|
|
| ctypes.PyObj_FromPtr | ``obj`` |
|
|
+--------------------------+-------------------------------------------+
|