We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stripped down example script::
def foo(x): x = x + 'some longer string' foo('a')
Obfuscated with Pyarmor 9.1.2 under Linux / Python 3.13:
> pyarmor cfg wrap_mode=2 clear_frame_locals=1 > pyarmor gen -i --mix-str -O ./dist ./myscript.py
The execution of the obfuscated script results in a segmentation fault. It does not occur without --mix-str or when adding a short string.
--mix-str
The text was updated successfully, but these errors were encountered:
Reproduced, I'll check it.
Sorry, something went wrong.
The new instr LOAD_FAST_LOAD_FAST results in this issue
LOAD_FAST_LOAD_FAST
It will be fixed in next release, got pre release from
https://pyarmor.dashingsoft.com/downloads/temp/pyarmor-9.1.3.tar.gz
Thank you!
No branches or pull requests
Stripped down example script::
Obfuscated with Pyarmor 9.1.2 under Linux / Python 3.13:
The execution of the obfuscated script results in a segmentation fault. It does not occur without
--mix-str
or when adding a short string.The text was updated successfully, but these errors were encountered: