Skip to content

2.8.1

Compare
Choose a tag to compare
@dflook dflook released this 15 Mar 23:54
· 211 commits to main since this release
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].