diff options
| author | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 16:03:19 -0400 |
|---|---|---|
| committer | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 16:03:19 -0400 |
| commit | bce77adecdbfd36006dbc97a50b67d05720c8135 (patch) | |
| tree | 31d1e1e80a04ddcd6c6261df9eb780d2ade650f8 /shared-bindings/socket | |
| parent | 9911b64fa13442f552a9968cdf40d926b98de6f8 (diff) | |
Added type hints previously missed
Diffstat (limited to 'shared-bindings/socket')
| -rw-r--r-- | shared-bindings/socket/__init__.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/socket/__init__.c b/shared-bindings/socket/__init__.c index 985104d55..64b1a538d 100644 --- a/shared-bindings/socket/__init__.c +++ b/shared-bindings/socket/__init__.c @@ -509,7 +509,7 @@ STATIC const mp_obj_type_t socket_type = { .locals_dict = (mp_obj_dict_t*)&socket_locals_dict, }; -//| def getaddrinfo(host: Any, port: Any) -> Any: +//| def getaddrinfo(host: string, port: string) -> tuple: //| """Gets the address information for a hostname and port //| //| Returns the appropriate family, socket type, socket protocol and |
