Plough forward on 3.7 CALL_FUNCTION_EX

This commit is contained in:
rocky
2018-04-15 14:15:25 -04:00
parent bbc7616e24
commit 87b70cfd13
3 changed files with 3 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -251,10 +251,13 @@ class Python36Parser(Python35Parser):
if self.version > 3.6: if self.version > 3.6:
self.addRule(""" self.addRule("""
expr ::= call_ex_kw3 expr ::= call_ex_kw3
expr ::= call_ex_kw
call_ex_kw3 ::= expr call_ex_kw3 ::= expr
build_tuple_unpack_with_call build_tuple_unpack_with_call
expr expr
CALL_FUNCTION_EX CALL_FUNCTION_EX
call_ex_kw ::= expr expr
build_map_unpack_with_call CALL_FUNCTION_EX
""", nop_func) """, nop_func)
pass pass
else: else: