diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 08:24:20 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 08:24:20 (GMT) |
commit | 8f1378366e9fc0d7f22fda302f04bf822ae34cc1 (patch) | |
tree | f213d643e990d5763f33959a00fa8e5f0bcc731a /Doc/library/socket.rst | |
parent | 536d70ed331c3192578b73b2b243bc1dbbd8ec2a (diff) | |
download | cpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.zip cpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.tar.gz cpython-8f1378366e9fc0d7f22fda302f04bf822ae34cc1.tar.bz2 |
Avoid line breaks after hyphens, otherwise they are turned into spaces
Diffstat (limited to 'Doc/library/socket.rst')
-rw-r--r-- | Doc/library/socket.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/socket.rst b/Doc/library/socket.rst index 530000b..f8ba847 100644 --- a/Doc/library/socket.rst +++ b/Doc/library/socket.rst @@ -1288,8 +1288,8 @@ to sockets. to transmit as opposed to sending the file until EOF is reached. File position is updated on return or also in case of error in which case :meth:`file.tell() <io.IOBase.tell>` can be used to figure out the number of - bytes which were sent. The socket must be of :const:`SOCK_STREAM` type. Non- - blocking sockets are not supported. + bytes which were sent. The socket must be of :const:`SOCK_STREAM` type. + Non-blocking sockets are not supported. .. versionadded:: 3.5 |