diff options
author | Georg Brandl <georg@python.org> | 2008-06-01 21:25:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-06-01 21:25:55 (GMT) |
commit | 877b10add4a676c3f868b86bd31e92a181b5a5b1 (patch) | |
tree | 9a7455ce3aa5f07e8f433a8aa9b59540b2cf2b40 /Doc/library/formatter.rst | |
parent | 6b38daa80dc0b63a089ac4557e25abe1f76b95af (diff) | |
download | cpython-877b10add4a676c3f868b86bd31e92a181b5a5b1.zip cpython-877b10add4a676c3f868b86bd31e92a181b5a5b1.tar.gz cpython-877b10add4a676c3f868b86bd31e92a181b5a5b1.tar.bz2 |
Remove the htmllib and sgmllib modules as per PEP 3108.
Diffstat (limited to 'Doc/library/formatter.rst')
-rw-r--r-- | Doc/library/formatter.rst | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Doc/library/formatter.rst b/Doc/library/formatter.rst index ba09b8e..c983ccc 100644 --- a/Doc/library/formatter.rst +++ b/Doc/library/formatter.rst @@ -1,4 +1,3 @@ - :mod:`formatter` --- Generic output formatting ============================================== @@ -6,12 +5,9 @@ :synopsis: Generic output formatter and device interface. -.. index:: single: HTMLParser (class in htmllib) - This module supports two interface definitions, each with multiple -implementations. The *formatter* interface is used by the :class:`HTMLParser` -class of the :mod:`htmllib` module, and the *writer* interface is required by -the formatter interface. +implementations: The *formatter* interface, and the *writer* interface which is +required by the formatter interface. Formatter objects transform an abstract flow of formatting events into specific output events on writer objects. Formatters manage several stack structures to |