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 serhiy.storchaka
Recipients benjamin.peterson, brett.cannon, georg.brandl, methane, ncoghlan, rhettinger, serhiy.storchaka, vstinner, yselivanov
Date 2017-12-14.17:19:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1513271986.82.0.213398074469.issue29469@psf.upfronthosting.co.za>
In-reply-to
Content
PR 4866 also fixes the bug in optimizing chained 'i' and 'not in'.

For example `1 in [1, 2] == [1, 2]` results in False (should be True) because it is changed to `1 in (1, 2) == [1, 2]`, and (1, 2) != [1, 2].
History
Date User Action Args
2017-12-14 17:19:46serhiy.storchakasetrecipients: + serhiy.storchaka, brett.cannon, georg.brandl, rhettinger, ncoghlan, vstinner, benjamin.peterson, methane, yselivanov
2017-12-14 17:19:46serhiy.storchakasetmessageid: <1513271986.82.0.213398074469.issue29469@psf.upfronthosting.co.za>
2017-12-14 17:19:46serhiy.storchakalinkissue29469 messages
2017-12-14 17:19:46serhiy.storchakacreate