Kaydet (Commit) feb4c880 authored tarafından Georg Brandl's avatar Georg Brandl

Merged revisions 83223 via svnmerge from

svn+ssh://svn.python.org/python/branches/py3k

........
  r83223 | georg.brandl | 2010-07-29 15:38:37 +0200 (Do, 29 Jul 2010) | 1 line

  #3874: document HTMLParser.unknown_decl().
........
üst 4c07cdc0
......@@ -134,10 +134,18 @@ An exception is defined as well:
.. method:: HTMLParser.handle_decl(decl)
Method called when an SGML declaration is read by the parser. The *decl*
parameter will be the entire contents of the declaration inside the ``<!``...\
``>`` markup. It is intended to be overridden by a derived class; the base
class implementation does nothing.
Method called when an SGML ``doctype`` declaration is read by the parser.
The *decl* parameter will be the entire contents of the declaration inside
the ``<!...>`` markup. It is intended to be overridden by a derived class;
the base class implementation does nothing.
.. method:: HTMLParser.unknown_decl(data)
Method called when an unrecognized SGML declaration is read by the parser.
The *data* parameter will be the entire contents of the declaration inside
the ``<!...>`` markup. It is sometimes useful to be be overridden by a
derived class; the base class implementation throws an :exc:`HTMLParseError`.
.. method:: HTMLParser.handle_pi(data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment