You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
18 lines
318 B
Python
Executable File
18 lines
318 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
|
|
from uncompyle6 import uncompyle
|
|
import sys, inspect
|
|
|
|
def uncompyle_test():
|
|
frame = inspect.currentframe()
|
|
try:
|
|
co = frame.f_code
|
|
uncompyle(2.7, co, sys.stdout, 1, 1)
|
|
print()
|
|
finally:
|
|
del frame
|
|
|
|
uncompyle_test()
|