summaryrefslogtreecommitdiffstats
path: root/Doc/library/logging.rst
diff options
context:
space:
mode:
authorRobert O'Shea <PurityLake@users.noreply.github.com>2022-07-30 07:42:21 (GMT)
committerGitHub <noreply@github.com>2022-07-30 07:42:21 (GMT)
commitcd26595232ac1b5061460d5949d5204c90287c1c (patch)
tree90bce447159930a1e81948f99297492020c37232 /Doc/library/logging.rst
parent0956b6d9c44f66cc152c6afe22a3793e5b157cfd (diff)
downloadcpython-cd26595232ac1b5061460d5949d5204c90287c1c.zip
cpython-cd26595232ac1b5061460d5949d5204c90287c1c.tar.gz
cpython-cd26595232ac1b5061460d5949d5204c90287c1c.tar.bz2
gh-95454: Replace truthy/falsy with true/false (GH-95456)
Diffstat (limited to 'Doc/library/logging.rst')
-rw-r--r--Doc/library/logging.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst
index 9bfed43..8ec1eda 100644
--- a/Doc/library/logging.rst
+++ b/Doc/library/logging.rst
@@ -672,7 +672,7 @@ empty string, all events are passed.
.. method:: filter(record)
- Is the specified record to be logged? Returns falsy for no, truthy for
+ Is the specified record to be logged? Returns false for no, true for
yes. Filters can either modify log records in-place or return a completely
different record instance which will replace the original
log record in any future processing of the event.