python-minifier icon indicating copy to clipboard operation
python-minifier copied to clipboard

Transform Python source code into its most compact representation

Results 42 python-minifier issues
Sort by recently updated
recently updated
newest added

While I know that merging lines via semicolons is an attractive way to save character space, this really should be a feature that can be turned off. I'm currently running...

From `src/python_minifier/transforms/constant_folding.py`, lines 51-54: ```py if isinstance(original_value, float) and math.isnan(original_value): # There is no nan literal. # we could use float('nan'), but that complicates folding as it's not a Constant...