commit | e11fecb5a97595a91506eeba8fd5a185d35ace9e | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Nov 11 19:36:51 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Nov 11 19:36:51 2012 +0100 |
tree | 9506989d45e8ead66f521f64892448289ca05ce0 | |
parent | 19e568d254bea8202703302d0ada9bc93f99331a [diff] [blame] |
Issue #16453: Fix equality testing of dead weakref objects. Also add tests for ordering and hashing.
diff --git a/Misc/NEWS b/Misc/NEWS index 4fc124d..f797d95 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,8 @@ Core and Builtins ----------------- +- Issue #16453: Fix equality testing of dead weakref objects. + - Issue #9535: Fix pending signals that have been received but not yet handled by Python to not persist after os.fork() in the child process.