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 gvanrossum
Recipients amaury.forgeotdarc, georg.brandl, gvanrossum, shigin
Date 2008-02-01.16:04:21
SpamBayes Score 0.04186056
Marked as misclassified No
Message-id <1201881862.6.0.648417336391.issue1981@psf.upfronthosting.co.za>
In-reply-to
Content
id(a.__abs__) == id(a.__abs__)

has a completely different explanation -- it so happens that the first
instantiation of a.__abs__ is freed after id() is called on it and the
second instantiation happens to reuse that same memory block.
History
Date User Action Args
2008-02-01 16:04:22gvanrossumsetspambayes_score: 0.0418606 -> 0.04186056
recipients: + gvanrossum, georg.brandl, amaury.forgeotdarc, shigin
2008-02-01 16:04:22gvanrossumsetspambayes_score: 0.0418606 -> 0.0418606
messageid: <1201881862.6.0.648417336391.issue1981@psf.upfronthosting.co.za>
2008-02-01 16:04:22gvanrossumlinkissue1981 messages
2008-02-01 16:04:21gvanrossumcreate