Reverting previous checkin. This breaks too much of HTMLParser to be applied

without thought. Anyway, such malformed HTML is better handled by something
like BeautifulSoup.
This commit is contained in:
Georg Brandl 2005-09-01 06:25:34 +00:00
parent 4ce69a5b06
commit cd3c26a717
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ locatestarttagend = re.compile(r"""
(?:'[^']*' # LITA-enclosed value
|\"[^\"]*\" # LIT-enclosed value
|[^'\">\s]+ # bare value
)?
)
)?
)
)*