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 | 8b852f111eb3e3f2e4f53f207859fdb3654d9b10 (patch) | |
tree | 7b730a2191a3fcc424e834994b35c24b1f4dbd3d /Doc/howto/sockets.rst | |
parent | 1c4398f880c21d5e14462ef7096319da39148774 (diff) | |
download | cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.zip cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.tar.gz cpython-8b852f111eb3e3f2e4f53f207859fdb3654d9b10.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 820beb5..b482c57 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -234,7 +234,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 |