Files
python-uncompyle6/test/simple_source/bug14/02_continue.py
2018-06-04 09:37:35 -04:00

12 lines
254 B
Python

# Python 1.4 cgi.py
# Bug was in "continue" detection.
# 1.4 doesn't have lnotab and our CONTINUE detection is off.
def parse_multipart(params, pdict):
while params:
if params.has_key('name'):
params = None
else:
continue
return None