Skip to content

2.11.2

Compare
Choose a tag to compare
@dflook dflook released this 03 Oct 21:46
· 34 commits to main since this release
0ada486

ℹ️ Note that python-minifier depends on the python interpreter for parsing source code,
and will output source code compatible with the version of the interpreter it is run with.

This means that if you minify code written for Python 3.11 using python-minifier running with Python 3.12,
the minified code may only run with Python 3.12.

Fixed

  • Using the positional only parameter separator / in method definitions could cause the following parameter to be
    incorrectly renamed in place, which could lead to failure if the method was called with that parameter as a keyword argument.
    This has been fixed.