diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-10-02 12:32:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 14:32:56 -0500 |
commit | 72089f33c0aed391f047b1cbaf19d8da1e51c167 (patch) | |
tree | 972aecf2f59602644e274b4145be3a261c81e766 /Lib/test/test_builtin.py | |
parent | 22cf6a2f2347b7d4f11e45e557beace55acc79b5 (diff) | |
download | cpython-git-72089f33c0aed391f047b1cbaf19d8da1e51c167.tar.gz |
bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (GH-28698)
Diffstat (limited to 'Lib/test/test_builtin.py')
-rw-r--r-- | Lib/test/test_builtin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_builtin.py b/Lib/test/test_builtin.py index bd8353d038..6dc4fa5550 100644 --- a/Lib/test/test_builtin.py +++ b/Lib/test/test_builtin.py @@ -1861,7 +1861,7 @@ class BuiltinTest(unittest.TestCase): # be evaluated in a boolean context (virtually all such use cases # are a result of accidental misuse implementing rich comparison # operations in terms of one another). - # For the time being, it will continue to evaluate as truthy, but + # For the time being, it will continue to evaluate as a true value, but # issue a deprecation warning (with the eventual intent to make it # a TypeError). self.assertWarns(DeprecationWarning, bool, NotImplemented) |