summaryrefslogtreecommitdiffstats
path: root/Lib/test/audit-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/audit-tests.py')
-rw-r--r--Lib/test/audit-tests.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/audit-tests.py b/Lib/test/audit-tests.py
index 0edc9d9..9504829 100644
--- a/Lib/test/audit-tests.py
+++ b/Lib/test/audit-tests.py
@@ -514,6 +514,17 @@ def test_not_in_gc():
assert hook not in o
+def test_sys_monitoring_register_callback():
+ import sys
+
+ def hook(event, args):
+ if event.startswith("sys.monitoring"):
+ print(event, args)
+
+ sys.addaudithook(hook)
+ sys.monitoring.register_callback(1, 1, None)
+
+
if __name__ == "__main__":
from test.support import suppress_msvcrt_asserts