diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-29 10:17:13 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-11-29 10:17:13 (GMT) |
commit | fbc1c268031a9c8fad65f49c8381b6145bd66ffc (patch) | |
tree | 61f0d5554573668c553dd9f39a50d74c12dd50bb /Doc/reference | |
parent | 4b79518f83fa6c4dadd69326276032d74c8e3df7 (diff) | |
download | cpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.zip cpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.tar.gz cpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.tar.bz2 |
Issue #19795: Improved markup of True/False constants.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/datamodel.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst index 2128ffc..48a42cc 100644 --- a/Doc/reference/datamodel.rst +++ b/Doc/reference/datamodel.rst @@ -201,7 +201,7 @@ Ellipsis single: True These represent the truth values False and True. The two objects representing - the values False and True are the only Boolean objects. The Boolean type is a + the values ``False`` and ``True`` are the only Boolean objects. The Boolean type is a subtype of the integer type, and Boolean values behave like the values 0 and 1, respectively, in almost all contexts, the exception being that when converted to a string, the strings ``"False"`` or ``"True"`` are returned, respectively. |