本文整理汇总了Python中xml.sax.xmlreader.AttributesImpl方法的典型用法代码示例。如果您正苦于以下问题:Python xmlreader.AttributesImpl方法的具体用法?Python xmlreader.AttributesImpl怎么用?Python xmlreader.AttributesImpl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xml.sax.xmlreader
的用法示例。
在下文中一共展示了xmlreader.AttributesImpl方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: parse
# 需要导入模块: from xml.sax import xmlreader [as 别名]
# 或者: from xml.sax.xmlreader import AttributesImpl [as 别名]
def parse(self, _):
h = self._handler
h.startDocument()
# The next two items ensure that items preceding the first
# start_element are properly stored and emitted:
h.comment("a comment")
h.processingInstruction("target", "data")
h.startElement("html", AttributesImpl({}))
h.comment("a comment")
h.processingInstruction("target", "data")
h.startElement("p", AttributesImpl({"class": "paraclass"}))
h.characters("text")
h.endElement("p")
h.endElement("html")
h.endDocument()
示例2: start_element
# 需要导入模块: from xml.sax import xmlreader [as 别名]
# 或者: from xml.sax.xmlreader import AttributesImpl [as 别名]
def start_element(self, name, attrs):
self._cont_handler.startElement(name, AttributesImpl(attrs))
示例3: test_attrs_empty
# 需要导入模块: from xml.sax import xmlreader [as 别名]
# 或者: from xml.sax.xmlreader import AttributesImpl [as 别名]
def test_attrs_empty(self):
self.verify_empty_attrs(AttributesImpl({}))
示例4: test_attrs_wattr
# 需要导入模块: from xml.sax import xmlreader [as 别名]
# 或者: from xml.sax.xmlreader import AttributesImpl [as 别名]
def test_attrs_wattr(self):
self.verify_attrs_wattr(AttributesImpl({"attr" : "val"}))