async def _notify_close(self): if self._raw_socket.fileno() >= 0: notify_closing(self._raw_socket)
async def notify_socket_close(sock): return notify_closing(sock)
async def _notify_close(self): notify_closing(self._raw_socket)