diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 15:50:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-03 15:50:04 (GMT) |
commit | ca30b02abecd481d92fce7ac347577069a3bc97a (patch) | |
tree | 63d84e05fcc898d2ca5c34d957cb679e2fb5327c /Misc/NEWS | |
parent | 38b8ae0f5b8a6165fbbfc5798e8a3067234af261 (diff) | |
download | cpython-ca30b02abecd481d92fce7ac347577069a3bc97a.zip cpython-ca30b02abecd481d92fce7ac347577069a3bc97a.tar.gz cpython-ca30b02abecd481d92fce7ac347577069a3bc97a.tar.bz2 |
Issue #24992: Fix error handling and a race condition (related to garbage
collection) in collections.OrderedDict constructor.
Patch reviewed by Serhiy Storchaka.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -14,6 +14,9 @@ Core and Builtins Library ------- +- Issue #24992: Fix error handling and a race condition (related to garbage + collection) in collections.OrderedDict constructor. + - Issue #24881: Fixed setting binary mode in Python implementation of FileIO on Windows and Cygwin. Patch from Akira Li. |