summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRobert O'Shea <PurityLake@users.noreply.github.com>2022-07-30 07:42:21 (GMT)
committerGitHub <noreply@github.com>2022-07-30 07:42:21 (GMT)
commitcd26595232ac1b5061460d5949d5204c90287c1c (patch)
tree90bce447159930a1e81948f99297492020c37232 /Misc
parent0956b6d9c44f66cc152c6afe22a3793e5b157cfd (diff)
downloadcpython-cd26595232ac1b5061460d5949d5204c90287c1c.zip
cpython-cd26595232ac1b5061460d5949d5204c90287c1c.tar.gz
cpython-cd26595232ac1b5061460d5949d5204c90287c1c.tar.bz2
gh-95454: Replace truthy/falsy with true/false (GH-95456)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/3.5.1rc1.rst2
-rw-r--r--Misc/NEWS.d/3.5.3rc1.rst2
-rw-r--r--Misc/NEWS.d/3.6.0b2.rst2
-rw-r--r--Misc/NEWS.d/3.7.0a1.rst2
-rw-r--r--Misc/NEWS.d/next/Documentation/2022-07-30-00-23-11.gh-issue-95454.we7AFm.rst2
5 files changed, 6 insertions, 4 deletions
diff --git a/Misc/NEWS.d/3.5.1rc1.rst b/Misc/NEWS.d/3.5.1rc1.rst
index d06817c..dc247ce 100644
--- a/Misc/NEWS.d/3.5.1rc1.rst
+++ b/Misc/NEWS.d/3.5.1rc1.rst
@@ -900,7 +900,7 @@ Kurenkov.
.. nonce: QhQ9RD
.. section: Library
-Fixed functools.singledispatch on classes with falsy metaclasses. Patch by
+Fixed functools.singledispatch on classes with false metaclasses. Patch by
Ethan Furman.
..
diff --git a/Misc/NEWS.d/3.5.3rc1.rst b/Misc/NEWS.d/3.5.3rc1.rst
index 2307fcc..bf4ef93 100644
--- a/Misc/NEWS.d/3.5.3rc1.rst
+++ b/Misc/NEWS.d/3.5.3rc1.rst
@@ -832,7 +832,7 @@ In the traceback module, restore the formatting of exception messages like
.. nonce: 3UhyPo
.. section: Library
-Allow falsy values to be used for msg parameter of subTest().
+Allow false values to be used for msg parameter of subTest().
..
diff --git a/Misc/NEWS.d/3.6.0b2.rst b/Misc/NEWS.d/3.6.0b2.rst
index 627465e..9413c6e 100644
--- a/Misc/NEWS.d/3.6.0b2.rst
+++ b/Misc/NEWS.d/3.6.0b2.rst
@@ -460,7 +460,7 @@ In the traceback module, restore the formatting of exception messages like
.. nonce: 3UhyPo
.. section: Library
-Allow falsy values to be used for msg parameter of subTest().
+Allow false values to be used for msg parameter of subTest().
..
diff --git a/Misc/NEWS.d/3.7.0a1.rst b/Misc/NEWS.d/3.7.0a1.rst
index e99c45e..9bada1b 100644
--- a/Misc/NEWS.d/3.7.0a1.rst
+++ b/Misc/NEWS.d/3.7.0a1.rst
@@ -4453,7 +4453,7 @@ In the traceback module, restore the formatting of exception messages like
.. nonce: 3UhyPo
.. section: Library
-Allow falsy values to be used for msg parameter of subTest().
+Allow false values to be used for msg parameter of subTest().
..
diff --git a/Misc/NEWS.d/next/Documentation/2022-07-30-00-23-11.gh-issue-95454.we7AFm.rst b/Misc/NEWS.d/next/Documentation/2022-07-30-00-23-11.gh-issue-95454.we7AFm.rst
new file mode 100644
index 0000000..6440c23
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2022-07-30-00-23-11.gh-issue-95454.we7AFm.rst
@@ -0,0 +1,2 @@
+Replaced incorrectly written true/false values
+in documentiation. Patch by Robert O'Shea