tracer: recognize Python 3.13's CALL_KW opcode.
This commit is contained in:
parent
bc316b41a8
commit
1159e52921
|
@ -25,7 +25,7 @@ def get_var_name(depth=2, default=_raise_exception):
|
|||
else:
|
||||
break
|
||||
if call_opc not in ("CALL_FUNCTION", "CALL_FUNCTION_KW", "CALL_FUNCTION_EX",
|
||||
"CALL_METHOD", "CALL"):
|
||||
"CALL_METHOD", "CALL", "CALL_KW"):
|
||||
if default is _raise_exception:
|
||||
raise NameNotFound
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue