More Python 3.4 CALL_FUNCTION_VAR

This commit is contained in:
rocky
2018-03-26 19:40:33 -04:00
parent 3d218c84b0
commit 3500c49daf
3 changed files with 7 additions and 2 deletions

View File

@@ -269,8 +269,8 @@ def customize_for_version(self, is_pypy, version):
0, -2, (1, kwargs+1, ', '))
else:
template = ('%c(%C, *%c, %C)',
0, -2, (1, kwargs+1, ', '),
(kwargs+1, -2, ', '))
0, (1, nargs+1, ', '),
-2, (-2-kwargs, -2, ', '))
self.template_engine(template, node)
self.prune()