You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Merge branch 'master' of github.com:rocky/python-uncompyle6
This commit is contained in:
@@ -671,6 +671,11 @@ class SourceWalker(GenericASTTraversal, object):
|
|||||||
n = n[0][0]
|
n = n[0][0]
|
||||||
elif n[0].kind in ('lastc_stmt', 'lastl_stmt'):
|
elif n[0].kind in ('lastc_stmt', 'lastl_stmt'):
|
||||||
n = n[0]
|
n = n[0]
|
||||||
|
if n[0].kind in ('ifstmt', 'iflaststmt', 'ifelsestmtl'):
|
||||||
|
# This seems needed for Python 2.5-2.7
|
||||||
|
n = n[0]
|
||||||
|
pass
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
if not preprocess:
|
if not preprocess:
|
||||||
self.default(node)
|
self.default(node)
|
||||||
|
Reference in New Issue
Block a user