summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-16 17:21:49 (GMT)
committerGitHub <noreply@github.com>2020-10-16 17:21:49 (GMT)
commitdff9161821032acfd2588d42d88511ebdbabaaf3 (patch)
treed6971905c4cf615b1a2ecfcc5773133b08012d0d
parentb30934e9afb0af3f8e2e5f0992445be775b3c630 (diff)
downloadcpython-dff9161821032acfd2588d42d88511ebdbabaaf3.zip
cpython-dff9161821032acfd2588d42d88511ebdbabaaf3.tar.gz
cpython-dff9161821032acfd2588d42d88511ebdbabaaf3.tar.bz2
bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) (GH-22725)
(cherry picked from commit e9959c71185d0850c84e3aba0301fbc238f194a9)
-rw-r--r--Lib/logging/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index 4013e56..7b169a1 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -748,8 +748,8 @@ class Filter(object):
"""
Determine if the specified record is to be logged.
- Is the specified record to be logged? Returns 0 for no, nonzero for
- yes. If deemed appropriate, the record may be modified in-place.
+ Returns True if the record should be logged, or False otherwise.
+ If deemed appropriate, the record may be modified in-place.
"""
if self.nlen == 0:
return True