diff options
author | Meador Inge <meadori@gmail.com> | 2012-03-05 04:40:15 (GMT) |
---|---|---|
committer | Meador Inge <meadori@gmail.com> | 2012-03-05 04:40:15 (GMT) |
commit | f1c42599bae9fcc47eb5f5d38ff077c000fef38f (patch) | |
tree | a7c38b9938b7f9153ac791fc629740738a6e3173 /Misc | |
parent | 5102bf476c509b4fa82e5a6b7419c6f430c78202 (diff) | |
parent | 653f932eff642065061f36693d59e10507523a6f (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |