Issue #25462: The hash of the key now is calculated only once in most

operations in C implementation of OrderedDict.
This commit is contained in:
Serhiy Storchaka 2015-11-13 15:18:26 +02:00
commit 1010921c71
2 changed files with 87 additions and 36 deletions

View file

@ -10,6 +10,9 @@ Release date: XXXX-XX-XX
Core and Builtins
-----------------
- Issue #25462: The hash of the key now is calculated only once in most
operations in C implementation of OrderedDict.
- Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now
rejects builtin types with not defined __new__.