diff options
author | Zackery Spytz <zspytz@gmail.com> | 2020-05-08 05:25:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 05:25:50 (GMT) |
commit | 02fa0ea9c1073e4476c9bde3d7112f5dd964aa57 (patch) | |
tree | 77db423fdfaede444989d4f36cd7978f5b31652f /Doc | |
parent | db9163ceef31ba00ccb23226917f9c8e9142a0b8 (diff) | |
download | cpython-02fa0ea9c1073e4476c9bde3d7112f5dd964aa57.zip cpython-02fa0ea9c1073e4476c9bde3d7112f5dd964aa57.tar.gz cpython-02fa0ea9c1073e4476c9bde3d7112f5dd964aa57.tar.bz2 |
bpo-40273: Reversible mappingproxy (FH-19513)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/types.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst index 4cb91c1..1d081e2 100644 --- a/Doc/library/types.rst +++ b/Doc/library/types.rst @@ -329,6 +329,12 @@ Standard names are defined for the following types: Return a new view of the underlying mapping's values. + .. describe:: reversed(proxy) + + Return a reverse iterator over the keys of the underlying mapping. + + .. versionadded:: 3.9 + Additional Utility Classes and Functions ---------------------------------------- |