summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-10-02 12:32:56 -0700
committerPablo Galindo <pablogsal@gmail.com>2021-10-04 00:41:24 +0100
commit49fac92173d2c6cc3bd42a2355824e13272a3a7d (patch)
tree06a04c079221fe04da5cb5dcad2604c9f7394951 /Lib
parentedf190b97efe02c4acc05c3cfc71edbda34af261 (diff)
downloadcpython-git-49fac92173d2c6cc3bd42a2355824e13272a3a7d.tar.gz
bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (GH-28698)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_builtin.py2
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)