summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2020-05-07 23:25:50 -0600
committerGitHub <noreply@github.com>2020-05-07 22:25:50 -0700
commit02fa0ea9c1073e4476c9bde3d7112f5dd964aa57 (patch)
tree77db423fdfaede444989d4f36cd7978f5b31652f /Doc
parentdb9163ceef31ba00ccb23226917f9c8e9142a0b8 (diff)
downloadcpython-git-02fa0ea9c1073e4476c9bde3d7112f5dd964aa57.tar.gz
bpo-40273: Reversible mappingproxy (FH-19513)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/types.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/types.rst b/Doc/library/types.rst
index 4cb91c1a90..1d081e2c54 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
----------------------------------------