You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
9 lines
196 B
Python
9 lines
196 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
|