You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
20 lines
416 B
Python
20 lines
416 B
Python
# From 2.6.9 ftplib.py
|
|
# Bug was handling if with "and' inside while1
|
|
def getmultiline(line):
|
|
if line[3]:
|
|
while 1:
|
|
if line[2] and line[5]:
|
|
break
|
|
return
|
|
|
|
# From 2.6.9 refactor.py
|
|
def _detect_future_features(tp):
|
|
while True:
|
|
if tp == 6:
|
|
while tp == 7:
|
|
if tp != 11:
|
|
break
|
|
else:
|
|
break
|
|
return
|