You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
3.5 CALL_FUNCTION_VAR bug
This commit is contained in:
@@ -363,9 +363,9 @@ def customize_for_version(self, is_pypy, version):
|
||||
self.template_engine(template, args_node)
|
||||
else:
|
||||
if len(node) - nargs > 3:
|
||||
template = ('*%c, %C)', 1, (nargs+kwargs+1, -1, ', '))
|
||||
template = ('*%c, %C)', nargs+1, (nargs+kwargs+1, -1, ', '))
|
||||
else:
|
||||
template = ('*%c)', 1)
|
||||
template = ('*%c)', nargs+1)
|
||||
self.template_engine(template, node)
|
||||
self.prune()
|
||||
|
||||
|
Reference in New Issue
Block a user