File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,8 @@ def connect(
58
58
conntype : Optional [int ] = ...,
59
59
) -> None :
60
60
"""Connect to a remote socket at the provided (host, port) address. The conntype
61
- kwarg optionally may indicate SSL or not, depending on the underlying interface."""
61
+ kwarg optionally may indicate SSL or not, depending on the underlying interface.
62
+ """
62
63
63
64
64
65
class LegacyCircuitPythonSocketType (CommonCircuitPythonSocketType , Protocol ):
@@ -76,7 +77,8 @@ class SupportsRecvWithFlags(Protocol):
76
77
def recv (self , bufsize : int = ..., flags : int = ...) -> bytes :
77
78
"""Receive data from the socket. The return value is a bytes object representing
78
79
the data received. The maximum amount of data to be received at once is specified
79
- by bufsize. The meaning of the optional flags kwarg is implementation-specific."""
80
+ by bufsize. The meaning of the optional flags kwarg is implementation-specific.
81
+ """
80
82
81
83
82
84
class SupportsRecvInto (Protocol ):
You can’t perform that action at this time.
0 commit comments