pyminifier icon indicating copy to clipboard operation
pyminifier copied to clipboard

--replacement-length greater than 51 hangs indefinetly

Open kittenswolf opened this issue 6 years ago • 0 comments

Steps to repro: pyminifier --obfuscate-variables --obfuscate-functions --replacement-length=52 test.py

test.py:

def test():
    x = "hello world!"
    y = "123"
    z = "987"
    print(z + x + y)
test()

Expected result: The input should be obfuscated. Actual result: pyminifier hangs indefinetly.

kittenswolf avatar Jan 11 '19 13:01 kittenswolf