| 1234567891011121314151617 |
- from PikaObj import *
- class socket:
- def _bind(host: str, port: int): ...
- def _listen(num: int): ...
- def _accept(): ...
- def _send(data: any): ...
- def _close(): ...
- def _connect(host: str, port: int): ...
- def _recv(num: int) -> bytes: ...
- def _init(): ...
- def _setblocking(sta: int): ...
- def _gethostname() -> str: ...
- def _gethostbyname(host: str) -> str: ...
|