diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-19 18:28:45 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-19 18:28:45 (GMT) |
commit | 4a9ee26750aa8cb37b5072b2bb4dd328819febb4 (patch) | |
tree | bc714725cf478795c34bd9f8200a52424a47474b /Doc/library/html.entities.rst | |
parent | 5160da1afc07ab759a95d2b863134a88b9318e65 (diff) | |
download | cpython-4a9ee26750aa8cb37b5072b2bb4dd328819febb4.zip cpython-4a9ee26750aa8cb37b5072b2bb4dd328819febb4.tar.gz cpython-4a9ee26750aa8cb37b5072b2bb4dd328819febb4.tar.bz2 |
#2927: Added the unescape() function to the html module.
Diffstat (limited to 'Doc/library/html.entities.rst')
-rw-r--r-- | Doc/library/html.entities.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/html.entities.rst b/Doc/library/html.entities.rst index 65ce817..ba8324c 100644 --- a/Doc/library/html.entities.rst +++ b/Doc/library/html.entities.rst @@ -20,6 +20,7 @@ This module defines four dictionaries, :data:`html5`, Note that the trailing semicolon is included in the name (e.g. ``'gt;'``), however some of the names are accepted by the standard even without the semicolon: in this case the name is present with and without the ``';'``. + See also :func:`html.unescape`. .. versionadded:: 3.3 |