summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-01 21:10:57 (GMT)
committerGeorg Brandl <georg@python.org>2010-08-01 21:10:57 (GMT)
commitc79d4324791f219aeb7168707d668e982b48cb7f (patch)
treef91175d63694d637e1ea94a2abd5383dcb758c45 /Doc
parentd070cc5350178e0ddbd429763b5754c7718a2f70 (diff)
downloadcpython-c79d4324791f219aeb7168707d668e982b48cb7f.zip
cpython-c79d4324791f219aeb7168707d668e982b48cb7f.tar.gz
cpython-c79d4324791f219aeb7168707d668e982b48cb7f.tar.bz2
Merged revisions 83223 via svnmerge from
svn+ssh://pythondev@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(). ........
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/htmlparser.rst16
1 files changed, 12 insertions, 4 deletions
diff --git a/Doc/library/htmlparser.rst b/Doc/library/htmlparser.rst
index a5c185c..7b0ce03 100644
--- a/Doc/library/htmlparser.rst
+++ b/Doc/library/htmlparser.rst
@@ -148,10 +148,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)