mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-30 08:30:50 +00:00
e14675c2dc
As seen in _cmp() of python3.8/distutils/version.py with optimization -O2
26 lines
794 B
Python
Executable File
26 lines
794 B
Python
Executable File
#!/usr/bin/env python
|
|
""" Trivial helper program to bytecompile and run an uncompile
|
|
"""
|
|
import os, sys, py_compile
|
|
|
|
assert len(sys.argv) >= 2
|
|
version = sys.version[0:3]
|
|
if sys.argv[1] in ("--run", "-r"):
|
|
suffix = "_run"
|
|
py_source = sys.argv[2:]
|
|
else:
|
|
suffix = ""
|
|
py_source = sys.argv[1:]
|
|
|
|
for path in py_source:
|
|
short = os.path.basename(path)
|
|
if hasattr(sys, "pypy_version_info"):
|
|
cfile = "bytecode_pypy%s%s/%s" % (version, suffix, short) + "c"
|
|
else:
|
|
cfile = "bytecode_%s%s/%s" % (version, suffix, short) + "c"
|
|
print("byte-compiling %s to %s" % (path, cfile))
|
|
optimize = 2
|
|
py_compile.compile(path, cfile, optimize=optimize)
|
|
if isinstance(version, str) or version >= (2, 6, 0):
|
|
os.system("../bin/uncompyle6 -a -T %s" % cfile)
|