Skip to content

2.8.1

Choose a tag to compare

@dflook dflook released this 15 Mar 23:54
· 265 commits to main since this release
Immutable release. Only release title and notes can be modified.
6698d95

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 to def f(x):return[A for A in A], instead of def f(x):return[A for A in x].