More 3.0 control-flow rules...

Much more is needed though
This commit is contained in:
rocky
2019-11-11 19:07:58 -05:00
parent 1419acf019
commit 4abdffecb9
3 changed files with 34 additions and 1 deletions

View File

@@ -7,3 +7,8 @@ while 1:
raise RuntimeError
else:
raise RuntimeError
# Adapted from 3.0.1 cgi.py
def _parseparam(s, end):
while end > 0 and s.count(''):
end = s.find(';')