本文整理汇总了Python中spyne.protocol.ProtocolBase.to_string方法的典型用法代码示例。如果您正苦于以下问题:Python ProtocolBase.to_string方法的具体用法?Python ProtocolBase.to_string怎么用?Python ProtocolBase.to_string使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类spyne.protocol.ProtocolBase
的用法示例。
在下文中一共展示了ProtocolBase.to_string方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _to_value
# 需要导入模块: from spyne.protocol import ProtocolBase [as 别名]
# 或者: from spyne.protocol.ProtocolBase import to_string [as 别名]
def _to_value(cls, class_, value, k=None):
if issubclass(class_, ComplexModelBase):
return cls._to_dict(class_, value, k)
if issubclass(class_, DateTime):
return ProtocolBase.to_string(class_, value)
if issubclass(class_, Decimal):
if class_.Attributes.format is None:
return value
else:
return ProtocolBase.to_string(class_, value)
return value
示例2: test_date
# 需要导入模块: from spyne.protocol import ProtocolBase [as 别名]
# 或者: from spyne.protocol.ProtocolBase import to_string [as 别名]
def test_date(self):
n = datetime.date(2011,12,13)
ret = ProtocolBase.to_string(Date, n)
self.assertEquals(ret, n.isoformat())
dt = ProtocolBase.from_string(Date, ret)
self.assertEquals(n, dt)
示例3: test_time
# 需要导入模块: from spyne.protocol import ProtocolBase [as 别名]
# 或者: from spyne.protocol.ProtocolBase import to_string [as 别名]
def test_time(self):
n = datetime.time(1, 2, 3, 4)
ret = ProtocolBase.to_string(Time, n)
self.assertEquals(ret, n.isoformat())
dt = ProtocolBase.from_string(Time, ret)
self.assertEquals(n, dt)
示例4: test_duration_xml_duration
# 需要导入模块: from spyne.protocol import ProtocolBase [as 别名]
# 或者: from spyne.protocol.ProtocolBase import to_string [as 别名]
def test_duration_xml_duration(self):
dur = datetime.timedelta(days=5 + 30 + 365, hours=1, minutes=1,
seconds=12, microseconds=8e5)
str1 = 'P400DT3672.8S'
str2 = 'P1Y1M5DT1H1M12.8S'
self.assertEquals(dur, ProtocolBase.from_string(Duration, str1))
self.assertEquals(dur, ProtocolBase.from_string(Duration, str2))
self.assertEquals(dur, ProtocolBase.from_string(Duration, ProtocolBase.to_string(Duration, dur)))