Typos: decompyle3 -> uncompyle6

This commit is contained in:
rocky
2019-12-08 18:05:37 -05:00
parent 8d0ff367d8
commit eba5226a04
2 changed files with 3 additions and 3 deletions

View File

@@ -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:

View File

@@ -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