mirror of
https://github.com/python/cpython
synced 2024-11-05 18:12:54 +00:00
8c9f847997
* Unify the C and Python implementations of OrderedDict.popitem(). The C implementation no longer calls ``__getitem__`` and ``__delitem__`` methods of the OrderedDict subclasses. * Change popitem() and pop() methods of collections.OrderedDict For consistency with dict both implementations (pure Python and C) of these methods in OrderedDict no longer call __getitem__ and __delitem__ methods of the OrderedDict subclasses. Previously only the Python implementation of popitem() did not call them. |
||
---|---|---|
.. | ||
__init__.py | ||
abc.py |