summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_audit.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-41162: Clear audit hooks later during finalization (GH-21222)Steve Dower2020-07-031-16/+0
| | | Co-authored-by: Konge <zkonge@outlook.com>
* bpo-40121: Fixes audit event raised on creating a new socket (GH-19238)Steve Dower2020-03-311-0/+12
|
* bpo-39007: Add auditing events to functions in winreg (GH-17541)Steve Dower2019-12-091-0/+14
| | | Also allows winreg.CloseKey() to accept same types as other functions.
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks ↵Steve Dower2019-11-281-14/+42
| | | | | are invoked (GH-17392) Also fixes some potential segfaults in unraisable hook handling.
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+0
|
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Zackery Spytz2019-06-211-0/+3
| | | Also, add a missing call to va_end() in PySys_Audit().
* bpo-36842: Fix reference leak in tests by running out-of-proc (GH-13556)Steve Dower2019-05-291-209/+28
|
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+260
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.