2.8.1
Fixed
- A bug shortening names in the iterable of a comprehension when the original name was also used as a target in the comprehension
e.g.def f(x): return [x for x in x]
would be incorrectly minified todef f(x):return[A for A in A]
, instead ofdef f(x):return[A for A in x]
.