From 5118f7b9aff61fc3c1403c269145a4d4b17961cd Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sat, 14 Nov 2015 00:30:46 +0000 Subject: [PATCH] Issue #25017: Document that htmllib is superseded by module HTMLParser --- Doc/library/htmllib.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/htmllib.rst b/Doc/library/htmllib.rst index d9d81dfe2e..e5045dd392 100644 --- a/Doc/library/htmllib.rst +++ b/Doc/library/htmllib.rst @@ -7,6 +7,8 @@ .. deprecated:: 2.6 The :mod:`htmllib` module has been removed in Python 3. + Use :mod:`HTMLParser` instead in Python 2, and the equivalent, + :mod:`html.parser`, in Python 3. .. index:: -- 2.50.1