diff options
author | Andrés Delfino <adelfino@gmail.com> | 2018-07-21 22:14:56 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-07-21 22:14:56 (GMT) |
commit | cb9c299a55c244f77563c60e5a4afcc2221eac21 (patch) | |
tree | 9791adf646603b1ad0657e6c0ac59a33d1fc7920 /Doc | |
parent | 961360923e7997a04833652623ea549b0dc02262 (diff) | |
download | cpython-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.rst | 5 |
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]) |