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 amper
Recipients amper
Date 2016-04-09.12:52:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460206344.63.0.870327472601.issue26722@psf.upfronthosting.co.za>
In-reply-to
Content
Missed peephole optimization:
   1 > 2  ->  False
   3 < 4  ->  True
   5 == 6  ->  False
   6 != 7  ->  True
   7 >= 8  ->  False
   8 <= 9  ->  True
   10 is 11 -> False
   12 is not 13  ->  True
   14 in (15, 16, 17)  ->  False
   18 not in (19, 20, 21)  ->  True
History
Date User Action Args
2016-04-09 12:52:24ampersetrecipients: + amper
2016-04-09 12:52:24ampersetmessageid: <1460206344.63.0.870327472601.issue26722@psf.upfronthosting.co.za>
2016-04-09 12:52:24amperlinkissue26722 messages
2016-04-09 12:52:24ampercreate