Misc lint things

This commit is contained in:
rocky
2023-05-29 10:36:16 -04:00
parent 286bb5948c
commit ebcc12e2c3
2 changed files with 20 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2015-2022 Rocky Bernstein # Copyright (c) 2015-2023 Rocky Bernstein
# Copyright (c) 2005 by Dan Pascu <dan@windowmaker.org> # Copyright (c) 2005 by Dan Pascu <dan@windowmaker.org>
# Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com> # Copyright (c) 2000-2002 by hartmut Goebel <h.goebel@crazy-compilers.com>
# Copyright (c) 1999 John Aycock # Copyright (c) 1999 John Aycock
@@ -44,8 +44,8 @@ def nop_func(self, args):
class PythonParser(GenericASTBuilder): class PythonParser(GenericASTBuilder):
def __init__(self, SyntaxTree, start, debug): def __init__(self, syntax_tree_class, start, debug):
super(PythonParser, self).__init__(SyntaxTree, start, debug) super(PythonParser, self).__init__(syntax_tree_class, start, debug)
# FIXME: customize per python parser version # FIXME: customize per python parser version
# These are the non-terminals we should collect into a list. # These are the non-terminals we should collect into a list.
@@ -103,6 +103,7 @@ class PythonParser(GenericASTBuilder):
) )
# Instructions filled in from scanner # Instructions filled in from scanner
self.insts = [] self.insts = []
self.version = tuple()
def ast_first_offset(self, ast): def ast_first_offset(self, ast):
if hasattr(ast, "offset"): if hasattr(ast, "offset"):
@@ -151,9 +152,9 @@ class PythonParser(GenericASTBuilder):
Remove recursive references to allow garbage Remove recursive references to allow garbage
collector to collect this object. collector to collect this object.
""" """
for dict in (self.rule2func, self.rules, self.rule2name): for rule_dict in (self.rule2func, self.rules, self.rule2name):
for i in list(dict.keys()): for i in list(rule_dict.keys()):
dict[i] = None rule_dict[i] = None
for i in dir(self): for i in dir(self):
setattr(self, i, None) setattr(self, i, None)
@@ -164,11 +165,11 @@ class PythonParser(GenericASTBuilder):
def fix(c): def fix(c):
s = str(c) s = str(c)
last_token_pos = s.find("_") token_pos = s.find("_")
if last_token_pos == -1: if token_pos == -1:
return s return s
else: else:
return s[:last_token_pos] return s[:token_pos]
prefix = "" prefix = ""
if parent and tokens: if parent and tokens:
@@ -267,13 +268,13 @@ class PythonParser(GenericASTBuilder):
print(children) print(children)
return GenericASTBuilder.ambiguity(self, children) return GenericASTBuilder.ambiguity(self, children)
def resolve(self, list): def resolve(self, rule: list):
if len(list) == 2 and "function_def" in list and "assign" in list: if len(rule) == 2 and "function_def" in rule and "assign" in rule:
return "function_def" return "function_def"
if "grammar" in list and "expr" in list: if "grammar" in rule and "expr" in rule:
return "expr" return "expr"
# print >> sys.stderr, 'resolve', str(list) # print >> sys.stderr, 'resolve', str(rule)
return GenericASTBuilder.resolve(self, list) return GenericASTBuilder.resolve(self, rule)
############################################### ###############################################
# Common Python 2 and Python 3 grammar rules # # Common Python 2 and Python 3 grammar rules #
@@ -667,7 +668,7 @@ def get_python_parser(
if compile_mode == "exec": if compile_mode == "exec":
p = parse10.Python10Parser(debug_parser) p = parse10.Python10Parser(debug_parser)
else: else:
p = parse10.Python01ParserSingle(debug_parser) p = parse10.Python10ParserSingle(debug_parser)
elif version == (1, 1): elif version == (1, 1):
import uncompyle6.parsers.parse11 as parse11 import uncompyle6.parsers.parse11 as parse11
@@ -873,6 +874,7 @@ def python_parser(
:param showasm: Flag which determines whether the disassembled and :param showasm: Flag which determines whether the disassembled and
ingested code is written to sys.stdout or not. ingested code is written to sys.stdout or not.
:param parser_debug: dict containing debug flags for the spark parser. :param parser_debug: dict containing debug flags for the spark parser.
:param is_pypy: True if we are running PyPY
:return: Abstract syntax tree representation of the code object. :return: Abstract syntax tree representation of the code object.
""" """

View File

@@ -1,4 +1,4 @@
# Copyright (c) 2016-2018, 2020, 2022 Rocky Bernstein # Copyright (c) 2016-2018, 2020, 2022-2023 Rocky Bernstein
""" """
spark grammar differences over Python2.5 for Python 2.4. spark grammar differences over Python2.5 for Python 2.4.
""" """
@@ -115,8 +115,8 @@ class Python24Parser(Python25Parser):
lhs = rule[0] lhs = rule[0]
if lhs == "nop_stmt": if lhs == "nop_stmt":
l = len(tokens) token_len = len(tokens)
if 0 <= l < len(tokens): if 0 <= token_len < len(tokens):
return not int(tokens[first].pattr) == tokens[last].offset return not int(tokens[first].pattr) == tokens[last].offset
elif lhs == "try_except": elif lhs == "try_except":
if last == len(tokens): if last == len(tokens):