summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-03-05 04:40:15 (GMT)
committerMeador Inge <meadori@gmail.com>2012-03-05 04:40:15 (GMT)
commitf1c42599bae9fcc47eb5f5d38ff077c000fef38f (patch)
treea7c38b9938b7f9153ac791fc629740738a6e3173 /Misc
parent5102bf476c509b4fa82e5a6b7419c6f430c78202 (diff)
parent653f932eff642065061f36693d59e10507523a6f (diff)
downloadcpython-f1c42599bae9fcc47eb5f5d38ff077c000fef38f.zip
cpython-f1c42599bae9fcc47eb5f5d38ff077c000fef38f.tar.gz
cpython-f1c42599bae9fcc47eb5f5d38ff077c000fef38f.tar.bz2
Issue #14195: Make WeakSet.__lt__ and WeakSet.__gt__ irreflexive.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2ff3d3c..386e6c0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -511,6 +511,10 @@ Core and Builtins
Library
-------
+- Issue #14195: An issue that caused weakref.WeakSet instances to incorrectly
+ return True for a WeakSet instance 'a' in both 'a < a' and 'a > a' has been
+ fixed.
+
- Issue #14166: Pickler objects now have an optional ``dispatch_table``
attribute which allows to set custom per-pickler reduction functions.
Patch by sbt.