File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,8 @@ def connect(
80
80
conntype : Optional [int ] = ...,
81
81
) -> None :
82
82
"""Connect to a remote socket at the provided (host, port) address. The conntype
83
- kwarg optionally may indicate SSL or not, depending on the underlying interface."""
83
+ kwarg optionally may indicate SSL or not, depending on the underlying interface.
84
+ """
84
85
85
86
class LegacyCircuitPythonSocketType (CommonCircuitPythonSocketType , Protocol ):
86
87
"""Describes the structure a legacy CircuitPython socket type must have."""
@@ -96,7 +97,8 @@ class SupportsRecvWithFlags(Protocol):
96
97
def recv (self , bufsize : int = ..., flags : int = ...) -> bytes :
97
98
"""Receive data from the socket. The return value is a bytes object representing
98
99
the data received. The maximum amount of data to be received at once is specified
99
- by bufsize. The meaning of the optional flags kwarg is implementation-specific."""
100
+ by bufsize. The meaning of the optional flags kwarg is implementation-specific.
101
+ """
100
102
101
103
class SupportsRecvInto (Protocol ):
102
104
"""Describes a type that possesses a socket recv_into() method."""
You can’t perform that action at this time.
0 commit comments