Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-120937: Reference weakref from the __del__ documentation #120940

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Doc/reference/datamodel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1667,6 +1667,8 @@ Basic customization

It is not guaranteed that :meth:`__del__` methods are called for objects
that still exist when the interpreter exits.
:class:`weakref.finalize` provides a straightforward way to register
a cleanup function to be called when an object is garbage collected.

.. note::

Expand Down
Loading