From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sat, 14 Mar 2026 09:26:32 +0000 (+0100) Subject: [3.14] Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935) (#145936) X-Git-Tag: v3.14.4~142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef757268e0b1fb198f216cb468c0033deecaa6e4;p=thirdparty%2FPython%2Fcpython.git [3.14] Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935) (#145936) Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935) (cherry picked from commit 51e8acf8de1aa1f1751dd5bb84d44b8d42143b9c) Co-authored-by: Connor Gibson --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 56df5bdd182b..e2fe5ec03201 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1286,7 +1286,7 @@ Mutable sequence types also support the following methods: :no-typesetting: .. method:: sequence.append(value, /) - Append *value* to the end of the sequence + Append *value* to the end of the sequence. This is equivalent to writing ``seq[len(seq):len(seq)] = [value]``. .. method:: bytearray.clear()