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 shivaprasanth
Recipients shivaprasanth
Date 2015-08-20.10:42:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440067329.01.0.494145077826.issue24901@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7.9 (default, Apr  2 2015, 15:33:21) 
[GCC 4.9.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> (2,)==(2)
False
>>> (2,3,)==(2,3)
True
>>> (2,3)==(2,3,)
True
>>> s=(2,)
>>> s2=(2)
>>> s==s2
False
>>>
History
Date User Action Args
2015-08-20 10:42:09shivaprasanthsetrecipients: + shivaprasanth
2015-08-20 10:42:09shivaprasanthsetmessageid: <1440067329.01.0.494145077826.issue24901@psf.upfronthosting.co.za>
2015-08-20 10:42:08shivaprasanthlinkissue24901 messages
2015-08-20 10:42:08shivaprasanthcreate