aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_builtin.py
diff options
context:
space:
mode:
authorRaymond Hettinger <rhettinger@users.noreply.github.com>2021-10-02 13:48:08 -0500
committerGitHub <noreply@github.com>2021-10-02 13:48:08 -0500
commitdb91b058d5d4fbff4185982095d90fe6a2741aed (patch)
tree7ef4237d739f1f707f1892fa961362acb807b1a8 /Lib/test/test_builtin.py
parent0742abdc48886b74ed3b66985a54bb1c32802670 (diff)
downloadcpython-db91b058d5d4fbff4185982095d90fe6a2741aed.tar.gz
cpython-db91b058d5d4fbff4185982095d90fe6a2741aed.zip
bpo-45346: Keep docs consistent regarding true and false values (GH-28697)
Diffstat (limited to 'Lib/test/test_builtin.py')
-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 bd8353d038b..6dc4fa55502 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)