Home
last modified time | relevance | path

Searched refs:_doctype (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Lib/xml/etree/
DElementTree.py1563 self._doctype = None
1683 self._doctype = [] # inside a doctype declaration
1684 elif self._doctype is not None:
1687 self._doctype = None
1692 self._doctype.append(text)
1693 n = len(self._doctype)
1695 type = self._doctype[1]
1697 name, type, pubid, system = self._doctype
1701 name, type, system = self._doctype
1713 self._doctype = None
/third_party/python/Lib/test/
Dtest_xml_etree.py3348 _doctype = None variable in TreeBuilderTest.test_doctype.DoctypeParser
3351 self._doctype = (name, pubid, system)
3354 return self._doctype
3424 _doctype = None
3427 nonlocal _doctype
3428 _doctype = (args, kwargs)
3434 self.assertIsNone(_doctype)
3436 _doctype = _doctype2 = None
3448 self.assertIsNone(_doctype)