summaryrefslogtreecommitdiffstats
path: root/Doc/library/imp.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:17:13 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:17:13 (GMT)
commitfbc1c268031a9c8fad65f49c8381b6145bd66ffc (patch)
tree61f0d5554573668c553dd9f39a50d74c12dd50bb /Doc/library/imp.rst
parent4b79518f83fa6c4dadd69326276032d74c8e3df7 (diff)
downloadcpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.zip
cpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.tar.gz
cpython-fbc1c268031a9c8fad65f49c8381b6145bd66ffc.tar.bz2
Issue #19795: Improved markup of True/False constants.
Diffstat (limited to 'Doc/library/imp.rst')
-rw-r--r--Doc/library/imp.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/imp.rst b/Doc/library/imp.rst
index ebdbd4d..364d81e 100644
--- a/Doc/library/imp.rst
+++ b/Doc/library/imp.rst
@@ -190,8 +190,8 @@ file paths.
The ``cpython-32`` string comes from the current magic tag (see
:func:`get_tag`; if :attr:`sys.implementation.cache_tag` is not defined then
:exc:`NotImplementedError` will be raised). The returned path will end in
- ``.pyc`` when ``__debug__`` is True or ``.pyo`` for an optimized Python
- (i.e. ``__debug__`` is False). By passing in True or False for
+ ``.pyc`` when ``__debug__`` is ``True`` or ``.pyo`` for an optimized Python
+ (i.e. ``__debug__`` is ``False``). By passing in ``True`` or ``False`` for
*debug_override* you can override the system's value for ``__debug__`` for
extension selection.