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.

Author doko
Recipients
Date 2003-09-26.21:20:11
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
[forwarded from http://bugs.debian.org/211129]

>>> import weakref
>>> class Foo:
...     def bar(self):
...             print 'Hello'
... 
>>> x=Foo()
>>> y=weakref.ref(x.bar)
>>> y
<weakref at 0x4021cb94; dead>

  This behavior is self-evidently wrong, and seems to
be due to an
implementation detail of Python.  There is a workaround
available here:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/81253
(I haven't
examined it closely, but it looks like it should work)
 Nevertheless, this
should be fixed eventually IMO.

History
Date User Action Args
2007-08-23 14:17:15adminlinkissue813299 messages
2007-08-23 14:17:15admincreate