()
| 7 | import sys, inspect |
| 8 | |
| 9 | def uncompyle_test(): |
| 10 | frame = inspect.currentframe() |
| 11 | try: |
| 12 | co = frame.f_code |
| 13 | decompile(sysinfo2float(), co, sys.stdout, 1, 1) |
| 14 | print() |
| 15 | finally: |
| 16 | del frame |
| 17 | |
| 18 | uncompyle_test() |
no test coverage detected