Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296)

This commit is contained in:
wim glenn 2019-05-13 20:10:14 -05:00 committed by Raymond Hettinger
parent 45b2f8893c
commit 1a10a6b980
1 changed files with 1 additions and 1 deletions

View File

@ -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`::