(self, attrs)
| 840 | return data |
| 841 | |
| 842 | def strattrs(self, attrs): |
| 843 | return ''.join([' %s="%s"' % (t[0],_xmlescape(t[1],{'"':'"'})) for t in attrs]) |
| 844 | |
| 845 | def push(self, element, expectingText): |
| 846 | self.elementstack.append([element, expectingText, []]) |
no test coverage detected