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 /Doc/whatsnew | |
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 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index db71f06..814594a 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -673,9 +673,16 @@ When a module does not define ``__loader__``, fall back to ``__spec__.loader``. encodings --------- + :func:`encodings.normalize_encoding` now ignores non-ASCII characters. (Contributed by Hai Shi in :issue:`39337`.) +gc +-- + +Added audit hooks for :func:`gc.get_objects`, :func:`gc.get_referrers` and +:func:`gc.get_referents`. (Contributed by Pablo Galindo in :issue:`43439`.) + glob ---- |