From f09430bdd42df349e1678a433799e14ffb8c1d0f Mon Sep 17 00:00:00 2001 From: Lysandros Nikolaou Date: Thu, 18 Dec 2025 18:06:55 +0200 Subject: [PATCH] Fix lint error --- 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 0442bceca66..0ecb0627694 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1460,7 +1460,7 @@ application). All of the above methods/operations are also lock-free. They do not block concurrent modifications. Other operations that hold a lock will not block these from observing intermediate states. - + All other operations from here on block using the per-object lock. Writing a single item via ``lst[i] = x`` is safe to call from multiple