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 nassrat
Recipients nassrat
Date 2008-12-12.01:46:01
SpamBayes Score 0.24651986
Marked as misclassified No
Message-id <1229046362.42.0.268420171546.issue4638@psf.upfronthosting.co.za>
In-reply-to
Content
In [29]: a,b = 1.0,1.0
In [30]: a is b
Out[30]: True
In [31]: a = 1.0
In [32]: b = 1.0
In [33]: a is b
Out[33]: False

# ?!?
History
Date User Action Args
2008-12-12 01:46:02nassratsetrecipients: + nassrat
2008-12-12 01:46:02nassratsetmessageid: <1229046362.42.0.268420171546.issue4638@psf.upfronthosting.co.za>
2008-12-12 01:46:01nassratlinkissue4638 messages
2008-12-12 01:46:01nassratcreate