xml representation of current nodes
(self)
| 356 | return ''.join([etree.tostring(e, encoding=str) for e in self]) |
| 357 | |
| 358 | def __unicode__(self): |
| 359 | """xml representation of current nodes""" |
| 360 | return u''.join([etree.tostring(e, encoding=str) |
| 361 | for e in self]) |
| 362 | |
| 363 | def __html__(self): |
| 364 | """html representation of current nodes:: |