Exemplo n.º 1
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, str(bool(value)).lower(), tns, parent_elt, name)
Exemplo n.º 2
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, value.isoformat('T'), tns, parent_elt, name)
Exemplo n.º 3
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, str(value), tns, parent_elt, name)
Exemplo n.º 4
0
    def to_xml(cls, value, tns, parent_elt, name='retval'):
        if not isinstance(value, six.text_type):
            value = six.text_type(value, string_encoding)

        string_to_xml(cls, value, tns, parent_elt, name)
Exemplo n.º 5
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, str(bool(value)).lower(), tns, parent_elt, name)
Exemplo n.º 6
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, str(value), tns, parent_elt, name)
Exemplo n.º 7
0
 def to_xml(cls, value, tns, parent_elt, name='retval'):
     string_to_xml(cls, value.isoformat('T'), tns, parent_elt, name)
Exemplo n.º 8
0
    def to_xml(cls, value, tns, parent_elt, name='retval'):
        if not isinstance(value, unicode):
            value = unicode(value, string_encoding)

        string_to_xml(cls, value, tns, parent_elt, name)