summaryrefslogtreecommitdiffstats
path: root/Doc/library/xml.sax.utils.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:44:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 13:44:47 (GMT)
commit0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605 (patch)
tree2dd281b4c444e734299a0c5fb62696ddc2ce795c /Doc/library/xml.sax.utils.rst
parent989db5c880cbe85e49857cf44daf8b6c9ccbe0b6 (diff)
parenta97cd2eb17e0dc829e02119ea6f04198a419ed20 (diff)
downloadcpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.zip
cpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.tar.gz
cpython-0bbf8c08ab8915e9eb50bbe26aef1f74cc01f605.tar.bz2
Issue #19795: Mark up True and False as literal text instead of bold.
Diffstat (limited to 'Doc/library/xml.sax.utils.rst')
-rw-r--r--Doc/library/xml.sax.utils.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/xml.sax.utils.rst b/Doc/library/xml.sax.utils.rst
index 538b798..e46fefd 100644
--- a/Doc/library/xml.sax.utils.rst
+++ b/Doc/library/xml.sax.utils.rst
@@ -63,8 +63,8 @@ or as base classes.
should be a file-like object which will default to *sys.stdout*. *encoding* is
the encoding of the output stream which defaults to ``'iso-8859-1'``.
*short_empty_elements* controls the formatting of elements that contain no
- content: if *False* (the default) they are emitted as a pair of start/end
- tags, if set to *True* they are emitted as a single self-closed tag.
+ content: if ``False`` (the default) they are emitted as a pair of start/end
+ tags, if set to ``True`` they are emitted as a single self-closed tag.
.. versionadded:: 3.2
The *short_empty_elements* parameter.