summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-26 07:57:07 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-26 07:57:07 (GMT)
commitf4b7a02e932671c6e54e6b48340173cc859ab4c0 (patch)
treeeaa9107bb2885a9ed40f9c697a31049826324dde /Misc
parent155ceaa454ad9a623cade5ed326e6e1e70ce109d (diff)
downloadcpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.zip
cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.gz
cpython-f4b7a02e932671c6e54e6b48340173cc859ab4c0.tar.bz2
Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
returned NotImplemented. Removed incorrect implementations of __ne__().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 06df4db..6970e80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -11,6 +11,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #21408: The default __ne__() now returns NotImplemented if __eq__()
+ returned NotImplemented.
+
- Issue #23321: Fixed a crash in str.decode() when error handler returned
replacment string longer than mailformed input data.
@@ -47,6 +50,10 @@ Core and Builtins
Library
-------
+- Issue #21408: Removed incorrect implementations of __ne__() which didn't
+ returned NotImplemented if __eq__() returned NotImplemented. The default
+ __ne__() now works correctly.
+
- Issue #19996: :class:`email.feedparser.FeedParser` now handles (malformed)
headers with no key rather than amusing the body has started.