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 shigin
Recipients amaury.forgeotdarc, georg.brandl, shigin
Date 2008-01-31.16:46:28
SpamBayes Score 0.08904631
Marked as misclassified No
Message-id <1201797990.63.0.967070906221.issue1981@psf.upfronthosting.co.za>
In-reply-to
Content
I think it's good idea to make a note in Comparisons section or make 
some reference to data model section.

"""
The operators is and is not test for object identity: x is y is true if 
and only if x and y are the same object. x is not y yields the inverse 
truth value.
"""

But,
>>> id(a.__abs__) == id(a.__abs__)
True

And only example below shows me error in my objection.
>>> id(w)
6636344
>>> p = id(w)
>>> del w
>>> e = 1
>>> id(e)
6636344

I'm sorry for spam. I've missed Issue1410739 when search for any open 
bug.
History
Date User Action Args
2008-01-31 16:46:30shiginsetspambayes_score: 0.0890463 -> 0.08904631
recipients: + shigin, georg.brandl, amaury.forgeotdarc
2008-01-31 16:46:30shiginsetspambayes_score: 0.0890463 -> 0.0890463
messageid: <1201797990.63.0.967070906221.issue1981@psf.upfronthosting.co.za>
2008-01-31 16:46:29shiginlinkissue1981 messages
2008-01-31 16:46:29shigincreate