@@ -1688,7 +1688,7 @@ to sockets.
1688
1688
much data, if any, was successfully sent.
1689
1689
1690
1690
.. versionchanged :: 3.5
1691
- The socket timeout is no more reset each time data is sent successfully.
1691
+ The socket timeout is no longer reset each time data is sent successfully.
1692
1692
The socket timeout is now the maximum total duration to send all data.
1693
1693
1694
1694
.. versionchanged :: 3.5
@@ -1911,8 +1911,8 @@ can be changed by calling :func:`setdefaulttimeout`.
1911
1911
1912
1912
* In *non-blocking mode *, operations fail (with an error that is unfortunately
1913
1913
system-dependent) if they cannot be completed immediately: functions from the
1914
- :mod: `select ` can be used to know when and whether a socket is available for
1915
- reading or writing.
1914
+ :mod: `select ` module can be used to know when and whether a socket is available
1915
+ for reading or writing.
1916
1916
1917
1917
* In *timeout mode *, operations fail if they cannot be completed within the
1918
1918
timeout specified for the socket (they raise a :exc: `timeout ` exception)
@@ -2101,7 +2101,7 @@ manager protocol instead, open a socket with::
2101
2101
socket.socket(socket.AF_CAN, socket.SOCK_DGRAM, socket.CAN_BCM)
2102
2102
2103
2103
After binding (:const: `CAN_RAW `) or connecting (:const: `CAN_BCM `) the socket, you
2104
- can use the :meth: `socket.send `, and the :meth: `socket.recv ` operations (and
2104
+ can use the :meth: `socket.send ` and :meth: `socket.recv ` operations (and
2105
2105
their counterparts) on the socket object as usual.
2106
2106
2107
2107
This last example might require special privileges::
0 commit comments