MCPcopy Create free account
hub / github.com/gawel/pyquery / __unicode__

Method __unicode__

pyquery/pyquery.py:358–361  ·  view source on GitHub ↗

xml representation of current nodes

(self)

Source from the content-addressed store, hash-verified

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::

Callers

nothing calls this directly

Calls 1

joinMethod · 0.80

Tested by

no test coverage detected