From f4769edebd4719335c6415b9a3baf02e3f47d42e Mon Sep 17 00:00:00 2001 From: Connor Gibson Date: Sat, 14 Mar 2026 02:19:00 -0700 Subject: [PATCH] Docs: fix missing period in `Doc/library/stdtypes.rst` (GH-145935) (cherry picked from commit 51e8acf8de1aa1f1751dd5bb84d44b8d42143b9c) Co-authored-by: Connor Gibson --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 56df5bdd182bc7..e2fe5ec0320115 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()