python的socket底层是怎样实现的?我看_socket的类方法全是pass?

发布于 2022-09-06 03:01:41 字数 568 浏览 11 评论 0

class SocketType(object):

def bind(self, address): # real signature unknown; restored from __doc__
    """
    bind(address)
    
    Bind the socket to a local address.  For IP sockets, the address is a
    pair (host, port); the host must refer to the local host. For raw packet
    sockets the address is a tuple (ifname, proto [,pkttype [,hatype]])
    """
    pass

def close(self): # real signature unknown; restored from __doc__
    """
    close()
    
    Close the socket.  It cannot be used after this call.
    """
    pass

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浴红衣 2022-09-13 03:01:41

这个模块是用C实现的,没有Python源码。
你要看c的源码的话:https://github.com/python/cpy...

ゞ花落谁相伴 2022-09-13 03:01:41

这个大概是父类,具体的实现在其他类或者是用C语言拓展实现的

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文