diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2023-03-30 18:03:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 18:03:50 (GMT) |
commit | f192a558f538489ad1be30aa145e71d942798d1c (patch) | |
tree | b739ff5a1a15db1258cea4eabb4689fad3ec2807 /Doc/library | |
parent | 21e9de3bf0ecf32cd61296009518bfb9fdfcd04f (diff) | |
download | cpython-f192a558f538489ad1be30aa145e71d942798d1c.zip cpython-f192a558f538489ad1be30aa145e71d942798d1c.tar.gz cpython-f192a558f538489ad1be30aa145e71d942798d1c.tar.bz2 |
gh-101100: Fix Sphinx warning in gc.rst and refactor docs clean list (#103116)
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/gc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 69a1a83..832ebaf 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -251,7 +251,7 @@ values but should not rebind them): are printed. .. versionchanged:: 3.4 - Following :pep:`442`, objects with a :meth:`__del__` method don't end + Following :pep:`442`, objects with a :meth:`~object.__del__` method don't end up in :attr:`gc.garbage` anymore. .. data:: callbacks |