mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2024-11-23 05:00:07 +00:00
Merge pull request #382 from lostbeta/master
Fix version check comparison
This commit is contained in:
commit
2fda52bf45
@ -338,7 +338,7 @@ def customize_for_version36(self, version):
|
||||
kwargs = kwargs[0]
|
||||
call_function_ex = node[-1]
|
||||
assert call_function_ex == "CALL_FUNCTION_EX_KW" or (
|
||||
self.version >= 3.6 and call_function_ex == "CALL_FUNCTION_EX"
|
||||
self.version >= (3, 6) and call_function_ex == "CALL_FUNCTION_EX"
|
||||
)
|
||||
# FIXME: decide if the below test be on kwargs == 'dict'
|
||||
if (
|
||||
|
Loading…
Reference in New Issue
Block a user