From c9989bee43d6cb9babe45f9f9578b245f902d3a4 Mon Sep 17 00:00:00 2001 From: Connor Gibson Date: Fri, 13 Mar 2026 23:43:07 -0700 Subject: [PATCH] stdtypes.rst: fix missing period --- 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 7ae399eb95ba6e..6e2c72daf7ac44 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()