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 pitrou
Recipients fdrake, pitrou, tim.peters
Date 2012-11-11.18:11:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1352657513.2.0.600546820968.issue16453@psf.upfronthosting.co.za>
In-reply-to
Content
Aha, it is even worse:

>>> o = O()
>>> q = weakref.ref(o)
>>> r = weakref.ref(o)
>>> del o
>>> q() is None
True
>>> q == r
True
>>> q != r
True
History
Date User Action Args
2012-11-11 18:11:53pitrousetrecipients: + pitrou, tim.peters, fdrake
2012-11-11 18:11:53pitrousetmessageid: <1352657513.2.0.600546820968.issue16453@psf.upfronthosting.co.za>
2012-11-11 18:11:53pitroulinkissue16453 messages
2012-11-11 18:11:53pitroucreate