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 @@ -80,7 +80,8 @@ def connect(
8080 conntype : Optional [int ] = ...,
8181 ) -> None :
8282 """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+ """
8485
8586 class LegacyCircuitPythonSocketType (CommonCircuitPythonSocketType , Protocol ):
8687 """Describes the structure a legacy CircuitPython socket type must have."""
@@ -96,7 +97,8 @@ class SupportsRecvWithFlags(Protocol):
9697 def recv (self , bufsize : int = ..., flags : int = ...) -> bytes :
9798 """Receive data from the socket. The return value is a bytes object representing
9899 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+ """
100102
101103 class SupportsRecvInto (Protocol ):
102104 """Describes a type that possesses a socket recv_into() method."""
You can’t perform that action at this time.
0 commit comments