summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-22 00:07:59 (GMT)
committerGitHub <noreply@github.com>2020-10-22 00:07:59 (GMT)
commitb2b3803081f07600710273b4f902b5be6e5596e7 (patch)
tree6f81f45fa89eab8aa4f5d1d3d7394de48eceb2a5 /Misc/NEWS.d
parent916ac9520108831d2099b13992a45884b112b193 (diff)
downloadcpython-b2b3803081f07600710273b4f902b5be6e5596e7.zip
cpython-b2b3803081f07600710273b4f902b5be6e5596e7.tar.gz
cpython-b2b3803081f07600710273b4f902b5be6e5596e7.tar.bz2
bpo-41910: specify the default implementations of object.__eq__ and object.__ne__ (GH-22874) (#22877)
See Objects/typeobject.c:object_richcompare() for the implementation of this in CPython. Co-authored-by: Brett Cannon <brett@python.org>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-10-21-14-40-54.bpo-41910.CzBMit.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-10-21-14-40-54.bpo-41910.CzBMit.rst b/Misc/NEWS.d/next/Core and Builtins/2020-10-21-14-40-54.bpo-41910.CzBMit.rst
new file mode 100644
index 0000000..a40e251
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-10-21-14-40-54.bpo-41910.CzBMit.rst
@@ -0,0 +1 @@
+Document the default implementation of `object.__eq__`.