Lines Matching refs:attrs
225 # Now parse the data between i+1 and j into a tag and attrs
226 attrs = []
247 attrs.append((string.lower(attrname), attrvalue))
251 self.finish_starttag(tag, attrs)
275 def finish_starttag(self, tag, attrs):
282 self.unknown_starttag(tag, attrs)
285 self.handle_starttag(tag, method, attrs)
289 self.handle_starttag(tag, method, attrs)
322 def handle_starttag(self, tag, method, attrs):
323 method(attrs)
368 def unknown_starttag(self, tag, attrs): pass
424 def finish_starttag(self, tag, attrs):
432 self.unknown_starttag(tag, attrs)
435 self.handle_starttag(tag, method, attrs)
439 self.handle_starttag(tag, method, attrs)
472 def handle_starttag(self, tag, method, attrs):
473 method(attrs)
510 def unknown_starttag(self, tag, attrs): pass
551 def unknown_starttag(self, tag, attrs):
553 if not attrs:
557 for name, value in attrs: