You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
12 lines
254 B
Python
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
|