2.8.1
·
265 commits
to main
since this release
Immutable
release. Only release title and notes can be modified.
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].