Files
python-uncompyle6/test/simple_source/bug36/09_while_if_while.py
2018-02-26 01:27:00 -05:00

10 lines
228 B
Python

# From 3.6 _markupbase.py
# Bug was parsing the inner while
def _parse_doctype_subset(c, j, rawdata, n):
while n:
if c:
j += 1
while j < n and rawdata[j]:
j += 1
return -1