Closed
Description
Python bytecode version: 2.7, compiled with 2.7.10
uncompyle6 71e7120 on Python 3.6.4
original code:
def func(a, b, c):
while a:
if b:
continue
return False
return True
uncompyle6 output:
def func(a, b, c):
while 1:
if a:
if b:
pass
continue
return False
return True
The output has different behavior compared to original code.