This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: weakref callbacks are called only if the weakref is alive
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: arigo, noamr
Priority: normal Keywords: patch

Created on 2005-12-12 21:34 by noamr, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
libweakref.tex.diff noamr, 2005-12-12 21:34
Messages (2)
msg49191 - (view) Author: Noam Raphael (noamr) * Date: 2005-12-12 21:34
Weak reference objects have an optional callback
argument, which is a function that is called when the
original object is killed. This function is called only
if the created weakref object is still alive. This fact
isn't mentioned in the documentation - this patch
mentions it.
msg49192 - (view) Author: Armin Rigo (arigo) * (Python committer) Date: 2005-12-29 17:43
Logged In: YES 
user_id=4771

Checked in as r41846.
History
Date User Action Args
2022-04-11 14:56:14adminsetgithub: 42683
2005-12-12 21:34:21noamrcreate