mirror of
https://github.com/python/cpython.git
synced 2025-09-13 12:17:24 +00:00
#1411695: clarify behavior of xml.sax.utils.[un]escape.
This commit is contained in:
parent
309501a617
commit
e3979f776a
1 changed files with 4 additions and 2 deletions
|
@ -21,7 +21,8 @@ or as base classes.
|
||||||
|
|
||||||
You can escape other strings of data by passing a dictionary as the optional
|
You can escape 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
|
*entities* parameter. The keys and values must all be strings; each key will be
|
||||||
replaced with its corresponding value.
|
replaced with its corresponding value. The characters ``'&'``, ``'<'`` and
|
||||||
|
``'>'`` are always escaped, even if *entities* is provided.
|
||||||
|
|
||||||
|
|
||||||
.. function:: unescape(data[, entities])
|
.. function:: unescape(data[, entities])
|
||||||
|
@ -30,7 +31,8 @@ or as base classes.
|
||||||
|
|
||||||
You can unescape other strings of data by passing a dictionary as the optional
|
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
|
*entities* parameter. The keys and values must all be strings; each key will be
|
||||||
replaced with its corresponding value.
|
replaced with its corresponding value. ``'&'``, ``'<'``, and ``'>'``
|
||||||
|
are always unescaped, even if *entities* is provided.
|
||||||
|
|
||||||
.. versionadded:: 2.3
|
.. versionadded:: 2.3
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue