本文整理匯總了Python中xml.sax.handler.property_xml_string方法的典型用法代碼示例。如果您正苦於以下問題:Python handler.property_xml_string方法的具體用法?Python handler.property_xml_string怎麽用?Python handler.property_xml_string使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類xml.sax.handler
的用法示例。
在下文中一共展示了handler.property_xml_string方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: getProperty
# 需要導入模塊: from xml.sax import handler [as 別名]
# 或者: from xml.sax.handler import property_xml_string [as 別名]
def getProperty(self, name):
if name == handler.property_lexical_handler:
return self._lex_handler_prop
elif name == property_interning_dict:
return self._interning
elif name == property_xml_string:
if self._parser:
if hasattr(self._parser, "GetInputContext"):
return self._parser.GetInputContext()
else:
raise SAXNotRecognizedException(
"This version of expat does not support getting"
" the XML string")
else:
raise SAXNotSupportedException(
"XML string cannot be returned when not parsing")
raise SAXNotRecognizedException("Property '%s' not recognized" % name)
示例2: setProperty
# 需要導入模塊: from xml.sax import handler [as 別名]
# 或者: from xml.sax.handler import property_xml_string [as 別名]
def setProperty(self, name, value):
if name == handler.property_lexical_handler:
self._lex_handler_prop = value
if self._parsing:
self._reset_lex_handler_prop()
elif name == property_interning_dict:
self._interning = value
elif name == property_xml_string:
raise SAXNotSupportedException("Property '%s' cannot be set" %
name)
else:
raise SAXNotRecognizedException("Property '%s' not recognized" %
name)
# IncrementalParser methods