LoginSignup
0
0

More than 1 year has passed since last update.

uncompyle6 change recursionlimit

Last updated at Posted at 2022-05-27

in installed python sub folder "Lib\site-packages\uncompyle6\bin"
modify uncompile.py from:

if __name__ == '__main__':
    main_bin()

to:

if __name__ == '__main__':
    sys.setrecursionlimit(10000)
    print("Python Recursive Limitation = ", sys.getrecursionlimit())
    main_bin()

python -m uncompyle6.bin.uncompile -o . ui.pyc

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0