diff options
| author | sw23 <sw23@users.noreply.github.com> | 2020-10-29 20:15:34 -0400 |
|---|---|---|
| committer | sw23 <sw23@users.noreply.github.com> | 2020-10-29 20:15:34 -0400 |
| commit | ad166ca479f405a9cb43fae9fe7b082d2e6ba19f (patch) | |
| tree | bcea41d98dbab9bd61b464ac48315c46cbcba6a3 /shared-bindings/socketpool/SocketPool.c | |
| parent | 05d663b183b23432a6e1ff570100ebade5db45bc (diff) | |
Fixing make stub warnings and mypy issuesmak
Diffstat (limited to 'shared-bindings/socketpool/SocketPool.c')
| -rw-r--r-- | shared-bindings/socketpool/SocketPool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/socketpool/SocketPool.c b/shared-bindings/socketpool/SocketPool.c index 527cf7e98..b737b5fc2 100644 --- a/shared-bindings/socketpool/SocketPool.c +++ b/shared-bindings/socketpool/SocketPool.c @@ -82,7 +82,7 @@ STATIC mp_obj_t socketpool_socketpool_socket(size_t n_args, const mp_obj_t *pos_ } MP_DEFINE_CONST_FUN_OBJ_KW(socketpool_socketpool_socket_obj, 1, socketpool_socketpool_socket); -//| def getaddrinfo(host: str, port: int, family: int = 0, type: int = 0, proto: int = 0, flags: int = 0) -> tuple: +//| def getaddrinfo(host: str, port: int, family: int = 0, type: int = 0, proto: int = 0, flags: int = 0) -> Tuple[int, int, int, str, Tuple[str, int]]: //| """Gets the address information for a hostname and port //| //| Returns the appropriate family, socket type, socket protocol and |
