You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
10 lines
189 B
Python
10 lines
189 B
Python
# From idlelib/PyParse.py
|
|
# Bug is "if" inside a nested while/else.
|
|
def _study1(i, n):
|
|
while i:
|
|
while i:
|
|
i = 0
|
|
else:
|
|
if i:
|
|
i = 1
|