diff options
author | wim glenn <wim.glenn@gmail.com> | 2019-05-14 01:10:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-05-14 01:10:13 (GMT) |
commit | 1a10a6b980dbddb59a054f273dbd97ea5e7ccda4 (patch) | |
tree | c0fe5ed40d7e538ff80fd9df8e5e0a6da50c9e94 | |
parent | 45b2f8893c1b7ab3b3981a966f82e42beea82106 (diff) | |
download | cpython-1a10a6b980dbddb59a054f273dbd97ea5e7ccda4.zip cpython-1a10a6b980dbddb59a054f273dbd97ea5e7ccda4.tar.gz cpython-1a10a6b980dbddb59a054f273dbd97ea5e7ccda4.tar.bz2 |
Simplify the ``LastUpdatedOrderedDict`` example recipe (GH-13296)
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 64de970..e0469c2 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -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`:: |