We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a07642f commit 1765ce0Copy full SHA for 1765ce0
byterun/pyvm2.py
@@ -1062,7 +1062,7 @@ def byte_CALL_FUNCTION_VAR(self, arg):
1062
def byte_CALL_FUNCTION_KW(self, argc):
1063
if not(six.PY3 and sys.version_info.minor >= 6):
1064
kwargs = self.pop()
1065
- return self.call_function(arg, [], kwargs)
+ return self.call_function(argc, [], kwargs)
1066
# changed in 3.6: keyword arguments are packed in a tuple instead
1067
# of a dict. argc indicates total number of args.
1068
kwargnames = self.pop()
0 commit comments