From 8f7eab788aedcf1a23ef9be767e1b3502a6bbd5c Mon Sep 17 00:00:00 2001 From: "Miss Skeleton (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Fri, 16 Oct 2020 10:20:24 -0700 Subject: bpo-42011: Update documentation of logging.Filter.filter() (GH-22692) (GH-22724) (cherry picked from commit e9959c71185d0850c84e3aba0301fbc238f194a9) --- Lib/logging/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py index f5b7e2e..79e0787a 100644 --- a/Lib/logging/__init__.py +++ b/Lib/logging/__init__.py @@ -753,8 +753,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 -- cgit v0.12