本文整理汇总了Python中xmlrpclib.escape方法的典型用法代码示例。如果您正苦于以下问题:Python xmlrpclib.escape方法的具体用法?Python xmlrpclib.escape怎么用?Python xmlrpclib.escape使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xmlrpclib
的用法示例。
在下文中一共展示了xmlrpclib.escape方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_escape
# 需要导入模块: import xmlrpclib [as 别名]
# 或者: from xmlrpclib import escape [as 别名]
def test_escape(self):
self.assertEqual(xmlrpclib.escape("a&b"), "a&b")
self.assertEqual(xmlrpclib.escape("a<b"), "a<b")
self.assertEqual(xmlrpclib.escape("a>b"), "a>b")
示例2: literalRegex
# 需要导入模块: import xmlrpclib [as 别名]
# 或者: from xmlrpclib import escape [as 别名]
def literalRegex(s):
return re.escape(s)
# shutil module extensions, with {}-expansion and globbing
示例3: dump_string
# 需要导入模块: import xmlrpclib [as 别名]
# 或者: from xmlrpclib import escape [as 别名]
def dump_string(self, value, write, escape=xmlrpclib.escape):
try:
value = value.encode("ascii")
except UnicodeError:
sio = StringIO.StringIO()
xmlrpclib.Binary(value).encode(sio)
write(sio.getvalue())
return
return xmlrpclib.Marshaller.dump_string(self, value, write, escape)