You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
12 lines
395 B
Python
12 lines
395 B
Python
# Issue 151 for Python 2.7
|
|
# Bug was two-fold. Not having a rile for a while loop with an ending return statement
|
|
# and allowing iflastsmtl to have an optional c_stmt which allowed the "if" to get
|
|
# comined into the "while". A separate analysis for control flow should make this
|
|
# simpiler.
|
|
def func(a, b, c):
|
|
while a:
|
|
if b:
|
|
continue
|
|
return False
|
|
return True
|