Home
last modified time | relevance | path

Searched refs:starttagopen (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Lib/
DHTMLParser.py22 starttagopen = re.compile('<[a-zA-Z]') variable
160 if starttagopen.match(rawdata, i): # < + letter
Dsgmllib.py33 starttagopen = re.compile('<[>a-zA-Z]') variable
133 if starttagopen.match(rawdata, i):
Dxmllib.py38 starttagopen = re.compile('<' + _Name) variable
274 if starttagopen.match(rawdata, i):
/external/python/cpython3/Lib/html/
Dparser.py28 starttagopen = re.compile('<[a-zA-Z]') variable
170 if starttagopen.match(rawdata, i): # < + letter
/external/python/cpython2/Doc/howto/
Dregex.rst512 starttagopen = re.compile( ... )