From 586e0c195a2ca9e7653f30f572b9c11b939fab36 Mon Sep 17 00:00:00 2001 From: Thomas Ballard Date: Mon, 17 Nov 2025 06:47:28 -0500 Subject: [PATCH] Docs: Fix typo in socketserver documentation (GH-140956) (cherry picked from commit 20b64bdf23b88e44f72bc49f8bc783ae8ca21511) Co-authored-by: Thomas Ballard --- Doc/library/socketserver.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index b048eb71ebfbfb..7545b5fb0a526a 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -544,7 +544,7 @@ The difference is that the ``readline()`` call in the second handler will call first handler had to use a ``recv()`` loop to accumulate data until a newline itself. If it had just used a single ``recv()`` without the loop it would just have returned what has been received so far from the client. -TCP is stream based: data arrives in the order it was sent, but there no +TCP is stream based: data arrives in the order it was sent, but there is no correlation between client ``send()`` or ``sendall()`` calls and the number of ``recv()`` calls on the server required to receive it.