]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] Docs: Fix typo in socketserver documentation (GH-140956) (#141799)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 20 Nov 2025 16:35:09 +0000 (17:35 +0100)
committerGitHub <noreply@github.com>
Thu, 20 Nov 2025 16:35:09 +0000 (16:35 +0000)
Co-authored-by: Thomas Ballard <thomasballard0503@gmail.com>
Doc/library/socketserver.rst

index b048eb71ebfbfbfa8d27b2371eff3a9cadbf6239..7545b5fb0a526a98825bb30875f9fd33a12fd513 100644 (file)
@@ -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.