From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 20 Nov 2025 16:35:54 +0000 (+0100) Subject: [3.13] Docs: Fix typo in socketserver documentation (GH-140956) (#141798) X-Git-Tag: v3.13.10~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5285ccc19ef5927c03b60b5b454040c29acf370b;p=thirdparty%2FPython%2Fcpython.git [3.13] Docs: Fix typo in socketserver documentation (GH-140956) (#141798) Co-authored-by: Thomas Ballard --- diff --git a/Doc/library/socketserver.rst b/Doc/library/socketserver.rst index 8e699be8c836..17a1837d24b4 100644 --- a/Doc/library/socketserver.rst +++ b/Doc/library/socketserver.rst @@ -538,7 +538,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.