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