summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2020-10-21 23:24:38 (GMT)
committerGitHub <noreply@github.com>2020-10-21 23:24:38 (GMT)
commit3c69f0c933d4790855929f1fcd74e4a0fefb5d52 (patch)
tree16f5579ca01e780647b088cdeea782c5827d9a2d /Misc/NEWS.d/next
parentb451b0e9a772f009f4161f7a46476190d0d17ac1 (diff)
downloadcpython-3c69f0c933d4790855929f1fcd74e4a0fefb5d52.zip
cpython-3c69f0c933d4790855929f1fcd74e4a0fefb5d52.tar.gz
cpython-3c69f0c933d4790855929f1fcd74e4a0fefb5d52.tar.bz2
bpo-41910: specify the default implementations of object.__eq__ and object.__ne__ (GH-22874)
See Objects/typeobject.c:object_richcompare() for the implementation of this in CPython. Automerge-Triggered-By: GH:brettcannon
Diffstat (limited to 'Misc/NEWS.d/next')
-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__`.