summaryrefslogtreecommitdiffstats
path: root/Doc/howto
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/howto
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/howto')
-rw-r--r--Doc/howto/logging.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst
index f72f09f..8074b0f 100644
--- a/Doc/howto/logging.rst
+++ b/Doc/howto/logging.rst
@@ -464,7 +464,7 @@ ancestor loggers. Because of this, it is unnecessary to define and configure
handlers for all the loggers an application uses. It is sufficient to
configure handlers for a top-level logger and create child loggers as needed.
(You can, however, turn off propagation by setting the *propagate*
-attribute of a logger to *False*.)
+attribute of a logger to ``False``.)
.. _handler-basic:
@@ -747,10 +747,10 @@ circumstances is dependent on the Python version.
For versions of Python prior to 3.2, the behaviour is as follows:
-* If *logging.raiseExceptions* is *False* (production mode), the event is
+* If *logging.raiseExceptions* is ``False`` (production mode), the event is
silently dropped.
-* If *logging.raiseExceptions* is *True* (development mode), a message
+* If *logging.raiseExceptions* is ``True`` (development mode), a message
'No handlers could be found for logger X.Y.Z' is printed once.
In Python 3.2 and later, the behaviour is as follows: