Message308322
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]. |
|
| Date |
User |
Action |
Args |
| 2017-12-14 17:19:46 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, brett.cannon, georg.brandl, rhettinger, ncoghlan, vstinner, benjamin.peterson, methane, yselivanov |
| 2017-12-14 17:19:46 | serhiy.storchaka | set | messageid: <[email protected]> |
| 2017-12-14 17:19:46 | serhiy.storchaka | link | issue29469 messages |
| 2017-12-14 17:19:46 | serhiy.storchaka | create | |
|