summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-12-07 13:41:00 (GMT)
committerGitHub <noreply@github.com>2023-12-07 13:41:00 (GMT)
commitf27271619e7606338d194d669bbab4823517f7be (patch)
tree8c6bb67022e7456935ec1b7465c9a53f236e9f0a /Misc
parente21a7a976a7e3368dc1eba0895e15c47cb06c810 (diff)
downloadcpython-f27271619e7606338d194d669bbab4823517f7be.zip
cpython-f27271619e7606338d194d669bbab4823517f7be.tar.gz
cpython-f27271619e7606338d194d669bbab4823517f7be.tar.bz2
[3.12] gh-112125: Fix None.__ne__(None) returning NotImplemented instead of … (#112827)
gh-112125: Fix None.__ne__(None) returning NotImplemented instead of False (#112504) (cherry picked from commit 9c3458e05865093dd55d7608810a9d0ef0765978) Co-authored-by: andrewluotechnologies <44252973+andrewluotechnologies@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-12-07-13-19-55.gh-issue-112125.4ADN7i.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-12-07-13-19-55.gh-issue-112125.4ADN7i.rst b/Misc/NEWS.d/next/Core and Builtins/2023-12-07-13-19-55.gh-issue-112125.4ADN7i.rst
new file mode 100644
index 0000000..52cd450
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-12-07-13-19-55.gh-issue-112125.4ADN7i.rst
@@ -0,0 +1 @@
+Fix None.__ne__(None) returning NotImplemented instead of False