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 mingrammer
Recipients ezio.melotti, mingrammer, vstinner
Date 2016-10-20.04:03:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476936228.56.0.395643347684.issue28481@psf.upfronthosting.co.za>
In-reply-to
Content
I found bug i think about string comparison

> var1 = 'aa'
> var1 is 'aa' # This is True

But if the string literal has special chacter (e.g., colon), the comparison results in False

> var2 = ':bb'
> var2 is ':bb' # This is False

Check it please.
History
Date User Action Args
2016-10-20 04:03:48mingrammersetrecipients: + mingrammer, vstinner, ezio.melotti
2016-10-20 04:03:48mingrammersetmessageid: <1476936228.56.0.395643347684.issue28481@psf.upfronthosting.co.za>
2016-10-20 04:03:48mingrammerlinkissue28481 messages
2016-10-20 04:03:47mingrammercreate