mirror of https://github.com/python/cpython
Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296)
This commit is contained in:
parent
45b2f8893c
commit
1a10a6b980
|
@ -1141,7 +1141,7 @@ original insertion position is changed and moved to the end::
|
|||
|
||||
def __setitem__(self, key, value):
|
||||
super().__setitem__(key, value)
|
||||
super().move_to_end(key)
|
||||
self.move_to_end(key)
|
||||
|
||||
An :class:`OrderedDict` would also be useful for implementing
|
||||
variants of :func:`functools.lru_cache`::
|
||||
|
|
Loading…
Reference in New Issue