This commit is contained in:
Mattia Giambirtone 2023-06-02 11:17:12 +02:00
parent faccd4146d
commit f149d4c784
Signed by: nocturn9x
GPG Key ID: 8270F9F467971E59
1 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,13 @@
import structio
from structio.abc import AsyncResource
from structio.core.syscalls import check_cancelled
from functools import wraps
import socket as _socket
@wraps(_socket.socket)
def socket(*args, **kwargs):
return None # TODO
# TODO