diff options
| author | sw23 <sw23@users.noreply.github.com> | 2020-10-30 18:56:40 -0400 |
|---|---|---|
| committer | sw23 <sw23@users.noreply.github.com> | 2020-10-30 18:56:40 -0400 |
| commit | 6a63d20a5d2e7184bfc5747b465818fb7eee6b49 (patch) | |
| tree | d12719d74e96c35c8e1cc66da1e1507312c93261 /shared-bindings/socketpool/SocketPool.c | |
| parent | 09ae9aefa853ae20862eb7dd728e1e3187fc9135 (diff) | |
Fixing remaining stub mypy issues + run check-stubs to CI
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 b737b5fc2..0cead525f 100644 --- a/shared-bindings/socketpool/SocketPool.c +++ b/shared-bindings/socketpool/SocketPool.c @@ -58,7 +58,7 @@ STATIC mp_obj_t socketpool_socketpool_make_new(const mp_obj_type_t *type, size_t } -//| def socket(self, family: int = AF_INET, type: int = SOCK_STREAM, proto: int = IPPROTO_TCP) -> None: +//| def socket(self, family: int, type: int, proto: int) -> socketpool.Socket: //| """Create a new socket //| //| :param ~int family: AF_INET or AF_INET6 |
