mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-04-04 01:01:37 +00:00
Grammar lint adjustments
This commit is contained in:
parent
f5043408ec
commit
92b8d9c508
@ -74,6 +74,11 @@ def test_grammar():
|
||||
pass
|
||||
pass
|
||||
|
||||
if PYTHON_VERSION_TRIPLE >= (3, 7):
|
||||
expect_lhs.add("set_for")
|
||||
unused_rhs.add("set_iter")
|
||||
pass
|
||||
pass
|
||||
# FIXME
|
||||
if PYTHON_VERSION_TRIPLE < (3, 8):
|
||||
assert expect_lhs == set(lhs)
|
||||
|
@ -1072,9 +1072,8 @@ class Python3Parser(PythonParser):
|
||||
# A PyPy speciality - DRY with parse3
|
||||
self.addRule(
|
||||
"""
|
||||
expr ::= attribute
|
||||
attribute ::= expr LOOKUP_METHOD
|
||||
""",
|
||||
attribute ::= expr LOOKUP_METHOD
|
||||
""",
|
||||
nop_func,
|
||||
)
|
||||
custom_ops_processed.add(opname)
|
||||
|
@ -725,7 +725,6 @@ class Python37Parser(Python37BaseParser):
|
||||
store set_iter
|
||||
jb_or_c _come_froms
|
||||
|
||||
list_if_not_end ::= pjump_ift _come_froms
|
||||
# This is seen in PyPy, but possibly it appears on other Python 3?
|
||||
list_if ::= expr jmp_false list_iter COME_FROM
|
||||
list_if_not ::= expr jmp_true list_iter COME_FROM
|
||||
|
@ -138,7 +138,6 @@ class Python38Parser(Python37Parser):
|
||||
|
||||
# while1elsestmt ::= l_stmts JUMP_BACK
|
||||
whileTruestmt ::= _come_froms l_stmts JUMP_BACK POP_BLOCK
|
||||
while1stmt ::= _come_froms l_stmts COME_FROM_LOOP
|
||||
while1stmt ::= _come_froms l_stmts COME_FROM JUMP_BACK COME_FROM_LOOP
|
||||
whileTruestmt38 ::= _come_froms l_stmts JUMP_BACK
|
||||
whileTruestmt38 ::= _come_froms l_stmts JUMP_BACK COME_FROM_EXCEPT_CLAUSE
|
||||
|
Loading…
x
Reference in New Issue
Block a user