From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 17 Nov 2025 13:02:03 +0000 (+0100) Subject: [3.14] gh-141650: Fix typo in `xml.sax.saxutils.unescape` documentation (GH-141652... X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eeb5fbf5f721a02e3f82078c8014bc97cb30a85a;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-141650: Fix typo in `xml.sax.saxutils.unescape` documentation (GH-141652) (#141654) Co-authored-by: Tamzin Hadasa Kelly --- diff --git a/Doc/library/xml.sax.utils.rst b/Doc/library/xml.sax.utils.rst index 5ee11d58c3dd..7731f03d875e 100644 --- a/Doc/library/xml.sax.utils.rst +++ b/Doc/library/xml.sax.utils.rst @@ -37,7 +37,7 @@ or as base classes. You can unescape other strings of data by passing a dictionary as the optional *entities* parameter. The keys and values must all be strings; each key will be - replaced with its corresponding value. ``'&'``, ``'<'``, and ``'>'`` + replaced with its corresponding value. ``'&'``, ``'<'``, and ``'>'`` are always unescaped, even if *entities* is provided.