summaryrefslogtreecommitdiff
path: root/Doc/library/xml.sax.utils.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-10-19 16:43:42 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-10-19 16:43:42 +0300
commita97cd2eb17e0dc829e02119ea6f04198a419ed20 (patch)
treeef03c46125b86e2cec7846b4d8fb4c071728067b /Doc/library/xml.sax.utils.rst
parentecf41da83e5db98734b19f205899168cc56da943 (diff)
downloadcpython-git-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.gz
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 538b7980bd..e46fefdf99 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.