summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-22 00:07:39 (GMT)
committerGitHub <noreply@github.com>2020-10-22 00:07:39 (GMT)
commitc3538b83816663d7b767391a375179a0ce923990 (patch)
treef4730701b5bb3182cdc0637c7270bc767b074562 /Misc
parent6e842bcdf8a47fe081c9f2edc2b8875e1f3e2f18 (diff)
downloadcpython-c3538b83816663d7b767391a375179a0ce923990.zip
cpython-c3538b83816663d7b767391a375179a0ce923990.tar.gz
cpython-c3538b83816663d7b767391a375179a0ce923990.tar.bz2
bpo-41910: specify the default implementations of object.__eq__ and object.__ne__ (GH-22874) (#22876)
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')
-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__`.