diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-01 12:14:15 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-11-01 12:14:15 (GMT) |
commit | 7903913fa6a2904159cc1658f3471d2d2edde112 (patch) | |
tree | 05c10516acbf0f93e928d35e66e79a6d06e2408c /Doc | |
parent | 49ce06858b51ef98c31431436b28d32dd3bd99cd (diff) | |
parent | 7de56f6a04ab60010b3e2185752b3ddf681d068d (diff) | |
download | cpython-7903913fa6a2904159cc1658f3471d2d2edde112.zip cpython-7903913fa6a2904159cc1658f3471d2d2edde112.tar.gz cpython-7903913fa6a2904159cc1658f3471d2d2edde112.tar.bz2 |
#670664: merge with 3.2.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/html.parser.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst index 0dc81a5..7c44bec 100644 --- a/Doc/library/html.parser.rst +++ b/Doc/library/html.parser.rst @@ -115,7 +115,8 @@ An exception is defined as well: .. method:: HTMLParser.handle_data(data) - This method is called to process arbitrary data. It is intended to be + This method is called to process arbitrary data (e.g. the content of + ``<script>...</script>`` and ``<style>...</style>``). It is intended to be overridden by a derived class; the base class implementation does nothing. |