We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36f00d3 commit 568b64bCopy full SHA for 568b64b
uncompyle6/bin/uncompile.py
@@ -80,30 +80,7 @@ def usage():
80
81
82
def main_bin():
83
- if not (
84
- sys.version_info[0:2]
85
- in (
86
- (2, 6),
87
- (2, 7),
88
- (3, 0),
89
- (3, 1),
90
- (3, 2),
91
- (3, 3),
92
- (3, 4),
93
- (3, 5),
94
- (3, 6),
95
- (3, 7),
96
- (3, 8),
97
- (3, 9),
98
- (3, 10),
99
- )
100
- ):
101
- print(
102
- f"Error: {program} can decompile only bytecode from Python 3.7"
103
- f""" to 3.8.\n\tYou have version: {version_tuple_to_str()}."""
104
105
- sys.exit(-1)
106
-
+ current_bytecode_supported = True
107
recurse_dirs = False
108
numproc = 0
109
outfile = "-"
0 commit comments