Alexander Shigin added the comment: 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. __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1981> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com