You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Reinstate pos_args in CALL_METHOD
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Copyright (c) 2016-2017, 2019-2020, 2022 Rocky Bernstein
|
# Copyright (c) 2016-2017, 2019-2020, 2022-2023 Rocky Bernstein
|
||||||
"""
|
"""
|
||||||
Python 3.7 base code. We keep non-custom-generated grammar rules out of this file.
|
Python 3.7 base code. We keep non-custom-generated grammar rules out of this file.
|
||||||
"""
|
"""
|
||||||
@@ -558,7 +558,7 @@ class Python37BaseParser(PythonParser):
|
|||||||
nak = (len(opname_base) - len("CALL_METHOD")) // 3
|
nak = (len(opname_base) - len("CALL_METHOD")) // 3
|
||||||
rule = (
|
rule = (
|
||||||
"call ::= expr "
|
"call ::= expr "
|
||||||
+ ("expr " * args_pos)
|
+ ("pos_arg " * args_pos)
|
||||||
+ ("kwarg " * args_kw)
|
+ ("kwarg " * args_kw)
|
||||||
+ "expr " * nak
|
+ "expr " * nak
|
||||||
+ opname
|
+ opname
|
||||||
|
Reference in New Issue
Block a user