summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2012-03-05 04:15:38 (GMT)
committerMeador Inge <meadori@gmail.com>2012-03-05 04:15:38 (GMT)
commit653f932eff642065061f36693d59e10507523a6f (patch)
tree5184960fd4830276a5fdeca31af7acb449ccf6d3 /Misc
parent9c47ac05d13971d1e6ee2d74afad8d1b57e5b2ac (diff)
downloadcpython-653f932eff642065061f36693d59e10507523a6f.zip
cpython-653f932eff642065061f36693d59e10507523a6f.tar.gz
cpython-653f932eff642065061f36693d59e10507523a6f.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 d629840..cd0024e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -130,6 +130,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 #14177: marshal.loads() now raises TypeError when given an unicode
string. Patch by Guilherme Gonçalves.