diff options
author | Donald Stufft <donald@stufft.io> | 2014-05-20 16:58:38 (GMT) |
---|---|---|
committer | Donald Stufft <donald@stufft.io> | 2014-05-20 16:58:38 (GMT) |
commit | 5db0b3396e664affee09c0cb2094fdafc94acd94 (patch) | |
tree | b9cab62034b8e016d86ed703b50012892f6d4885 /Doc/howto/sockets.rst | |
parent | 3214ed648a31ea365d6445bf6a46beb5f6b56392 (diff) | |
download | cpython-5db0b3396e664affee09c0cb2094fdafc94acd94.zip cpython-5db0b3396e664affee09c0cb2094fdafc94acd94.tar.gz cpython-5db0b3396e664affee09c0cb2094fdafc94acd94.tar.bz2 |
Fix Issue #21528 - Fix documentation typos
Diffstat (limited to 'Doc/howto/sockets.rst')
-rw-r--r-- | Doc/howto/sockets.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index f8ac348..2b08141 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -237,7 +237,7 @@ messages to be sent back to back (without some kind of reply), and you pass following message. You'll need to put that aside and hold onto it, until it's needed. -Prefixing the message with it's length (say, as 5 numeric characters) gets more +Prefixing the message with its length (say, as 5 numeric characters) gets more complex, because (believe it or not), you may not get all 5 characters in one ``recv``. In playing around, you'll get away with it; but in high network loads, your code will very quickly break unless you use two ``recv`` loops - the first |