diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-03-10 00:53:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-10 00:53:57 (GMT) |
commit | b4f9089d4aa787c5b74134c98e5f0f11d9e63095 (patch) | |
tree | 26bfa4b05e2e5371f1473ca108b1451bcd49de6d /Lib/test/audit-tests.py | |
parent | 62a03cd490f81c0fb01eaceb31aa8a4c7800ed0e (diff) | |
download | cpython-b4f9089d4aa787c5b74134c98e5f0f11d9e63095.zip cpython-b4f9089d4aa787c5b74134c98e5f0f11d9e63095.tar.gz cpython-b4f9089d4aa787c5b74134c98e5f0f11d9e63095.tar.bz2 |
bpo-43439: Add audit hooks for gc functions (GH-24794)
Diffstat (limited to 'Lib/test/audit-tests.py')
-rw-r--r-- | Lib/test/audit-tests.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Lib/test/audit-tests.py b/Lib/test/audit-tests.py index ee6fc93..8e66594 100644 --- a/Lib/test/audit-tests.py +++ b/Lib/test/audit-tests.py @@ -323,6 +323,24 @@ def test_socket(): sock.close() +def test_gc(): + import gc + + def hook(event, args): + if event.startswith("gc."): + print(event, *args) + + sys.addaudithook(hook) + + gc.get_objects(generation=1) + + x = object() + y = [x] + + gc.get_referrers(x) + gc.get_referents(y) + + if __name__ == "__main__": from test.support import suppress_msvcrt_asserts |