summaryrefslogtreecommitdiffstats
path: root/Lib/htmllib.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-23 15:35:05 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-01-23 15:35:05 (GMT)
commit2dd4276559658e06eaf8b623c2c47373f1f50688 (patch)
tree22d257d3db8d9db2380a85608e4bf9a66f9b2df4 /Lib/htmllib.py
parent26e94a8822ba6935a74db098de134cc20fd4db2f (diff)
downloadcpython-2dd4276559658e06eaf8b623c2c47373f1f50688.zip
cpython-2dd4276559658e06eaf8b623c2c47373f1f50688.tar.gz
cpython-2dd4276559658e06eaf8b623c2c47373f1f50688.tar.bz2
added a few more __all__ lists
fixed typo in ihooks docstring
Diffstat (limited to 'Lib/htmllib.py')
-rw-r--r--Lib/htmllib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/htmllib.py b/Lib/htmllib.py
index cae9ae5..d3e8f88 100644
--- a/Lib/htmllib.py
+++ b/Lib/htmllib.py
@@ -9,6 +9,7 @@ import string
from sgmllib import SGMLParser
from formatter import AS_IS
+__all__ = ["HTMLParser"]
class HTMLParser(SGMLParser):