Home | History | Annotate | Download | only in python2.7

Lines Matching refs:def

34     def __init__(self, formatter, verbose=0):
44 def error(self, message):
47 def reset(self):
63 def handle_data(self, data):
74 def save_bgn(self):
84 def save_end(self):
101 def anchor_bgn(self, href, name, type):
115 def anchor_end(self):
128 def handle_image(self, src, alt, *args):
139 def start_html(self, attrs): pass
140 def end_html(self): pass
142 def start_head(self, attrs): pass
143 def end_head(self): pass
145 def start_body(self, attrs): pass
146 def end_body(self): pass
150 def start_title(self, attrs):
153 def end_title(self):
156 def do_base(self, attrs):
161 def do_isindex(self, attrs):
164 def do_link(self, attrs):
167 def do_meta(self, attrs):
170 def do_nextid(self, attrs): # Deprecated
177 def start_h1(self, attrs):
181 def end_h1(self):
185 def start_h2(self, attrs):
189 def end_h2(self):
193 def start_h3(self, attrs):
197 def end_h3(self):
201 def start_h4(self, attrs):
205 def end_h4(self):
209 def start_h5(self, attrs):
213 def end_h5(self):
217 def start_h6(self, attrs):
221 def end_h6(self):
227 def do_p(self, attrs):
230 def start_pre(self, attrs):
235 def end_pre(self):
240 def start_xmp(self, attrs):
244 def end_xmp(self):
247 def start_listing(self, attrs):
251 def end_listing(self):
254 def start_address(self, attrs):
258 def end_address(self):
262 def start_blockquote(self, attrs):
266 def end_blockquote(self):
272 def start_ul(self, attrs):
277 def end_ul(self):
282 def do_li(self, attrs):
291 def start_ol(self, attrs):
301 def end_ol(self):
306 def start_menu(self, attrs):
309 def end_menu(self):
312 def start_dir(self, attrs):
315 def end_dir(self):
318 def start_dl(self, attrs):
322 def end_dl(self):
326 def do_dt(self, attrs):
329 def do_dd(self, attrs):
334 def ddpop(self, bl=0):
345 def start_cite(self, attrs): self.start_i(attrs)
346 def end_cite(self): self.end_i()
348 def start_code(self, attrs): self.start_tt(attrs)
349 def end_code(self): self.end_tt()
351 def start_em(self, attrs): self.start_i(attrs)
352 def end_em(self): self.end_i()
354 def start_kbd(self, attrs): self.start_tt(attrs)
355 def end_kbd(self): self.end_tt()
357 def start_samp(self, attrs): self.start_tt(attrs)
358 def end_samp(self): self.end_tt()
360 def start_strong(self, attrs): self.start_b(attrs)
361 def end_strong(self): self.end_b()
363 def start_var(self, attrs): self.start_i(attrs)
364 def end_var(self): self.end_i()
368 def start_i(self, attrs):
370 def end_i(self):
373 def start_b(self, attrs):
375 def end_b(self):
378 def start_tt(self, attrs):
380 def end_tt(self):
383 def start_a(self, attrs):
397 def end_a(self):
402 def do_br(self, attrs):
407 def do_hr(self, attrs):
412 def do_img(self, attrs):
438 def do_plaintext(self, attrs):
444 def unknown_starttag(self, tag, attrs):
447 def unknown_endtag(self, tag):
451 def test(args = None):