method: xml.Tag.unicode

*Not documented*
    def unicode(self, indent=2):

origin: xml.Tag

where:

function source:

def unicode(self, indent=2):
    from py.__.xmlobj.visit import SimpleUnicodeVisitor 
    l = []
    SimpleUnicodeVisitor(l.append, indent).visit(self) 
    return u"".join(l)