You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
Typos: decompyle3 -> uncompyle6
This commit is contained in:
@@ -1326,11 +1326,11 @@ def info(args):
|
|||||||
if len(args) > 0:
|
if len(args) > 0:
|
||||||
arg = args[0]
|
arg = args[0]
|
||||||
if arg == "3.7":
|
if arg == "3.7":
|
||||||
from decompyle3.parser.parse37 import Python37Parser
|
from uncompyle6.parser.parse37 import Python37Parser
|
||||||
|
|
||||||
p = Python37Parser()
|
p = Python37Parser()
|
||||||
elif arg == "3.8":
|
elif arg == "3.8":
|
||||||
from decompyle3.parser.parse38 import Python38Parser
|
from uncompyle6.parser.parse38 import Python38Parser
|
||||||
|
|
||||||
p = Python38Parser()
|
p = Python38Parser()
|
||||||
else:
|
else:
|
||||||
|
@@ -75,7 +75,7 @@ class Scanner38(Scanner37):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
from decompyle3 import PYTHON_VERSION
|
from uncompyle6 import PYTHON_VERSION
|
||||||
|
|
||||||
if PYTHON_VERSION == 3.8:
|
if PYTHON_VERSION == 3.8:
|
||||||
import inspect
|
import inspect
|
||||||
|
Reference in New Issue
Block a user