[Python-checkins] bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)

Ezio Melotti webhook-mailer at python.org
Mon Oct 1 20:43:58 EDT 2018


https://github.com/python/cpython/commit/27d7f93f633f0163b96d0a95e312f0eb5615abfd
commit: 27d7f93f633f0163b96d0a95e312f0eb5615abfd
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: Ezio Melotti <ezio.melotti at gmail.com>
date: 2018-10-01T17:43:54-07:00
summary:

bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)

(cherry picked from commit 30534cc7172f36092e0002bb7df482edc0d539ce)

Co-authored-by: Ezio Melotti <ezio.melotti at gmail.com>

files:
M Doc/library/html.rst

diff --git a/Doc/library/html.rst b/Doc/library/html.rst
index d0706bcbc079..c2b01e14ea75 100644
--- a/Doc/library/html.rst
+++ b/Doc/library/html.rst
@@ -24,7 +24,7 @@ This module defines utilities to manipulate HTML.
 .. function:: unescape(s)
 
    Convert all named and numeric character references (e.g. ``>``,
-   ``>``, ``&x3e;``) in the string *s* to the corresponding unicode
+   ``>``, ``&#x3e;``) in the string *s* to the corresponding Unicode
    characters.  This function uses the rules defined by the HTML 5 standard
    for both valid and invalid character references, and the :data:`list of
    HTML 5 named character references <html.entities.html5>`.



More information about the Python-checkins mailing list