- Compound assignments in parenthesized comparisons are now evaluated correctly.
- E.g.
x = [0]; (x[0] += 1) == 0
would previously evaluate totrue
.
- E.g.
- The error message for
iterator.repeat
has been fixed.
8000
x = [0]; (x[0] += 1) == 0
would previously evaluate to true
.iterator.repeat
has been fixed.