source: trunk/essentials/dev-lang/python/Lib/test/test_htmllib.py@ 3317

Last change on this file since 3317 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 1.9 KB
Line 
1import formatter
2import htmllib
3import unittest
4
5from test import test_support
6
7
8class AnchorCollector(htmllib.HTMLParser):
9 def __init__(self, *args, **kw):
10 self.__anchors = []
11 htmllib.HTMLParser.__init__(self, *args, **kw)
12
13 def get_anchor_info(self):