diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-22 00:07:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 00:07:59 (GMT) |
commit | b2b3803081f07600710273b4f902b5be6e5596e7 (patch) | |
tree | 6f81f45fa89eab8aa4f5d1d3d7394de48eceb2a5 /Misc/NEWS.d | |
parent | 916ac9520108831d2099b13992a45884b112b193 (diff) | |
download | cpython-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.rst | 1 |
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__`. |