summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-07-21 22:14:56 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-07-21 22:14:56 (GMT)
commitcb9c299a55c244f77563c60e5a4afcc2221eac21 (patch)
tree9791adf646603b1ad0657e6c0ac59a33d1fc7920 /Doc
parent961360923e7997a04833652623ea549b0dc02262 (diff)
downloadcpython-cb9c299a55c244f77563c60e5a4afcc2221eac21.zip
cpython-cb9c299a55c244f77563c60e5a4afcc2221eac21.tar.gz
cpython-cb9c299a55c244f77563c60e5a4afcc2221eac21.tar.bz2
Fix versionchanged indentation in popitem documentation (GH-8387)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst5
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 66467ac..2e551dc 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -4228,9 +4228,8 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098:
:meth:`popitem` raises a :exc:`KeyError`.
.. versionchanged:: 3.7
-
- LIFO order is now guaranteed. In prior versions, :meth:`popitem` would
- return an arbitrary key/value pair.
+ LIFO order is now guaranteed. In prior versions, :meth:`popitem` would
+ return an arbitrary key/value pair.
.. method:: setdefault(key[, default])