我有一些代码使用简单的 tcp 套接字设置来测试一些东西。我们pylint --errors-only
在 python 文件上运行,通常作为验证所有代码的一种方式。
但是,python 套接字库文档中给出的简单示例代码 - http://docs.python.org/library/socket.html - 将输出:
************* Module SocketExample
E: 16: Instance of '_socketobject' has no 'recv' member
E: 18: Instance of '_socketobject' has no 'sendall' member
文档显示了这些成员,代码运行和工作。
一个套接字目录显示它们也存在:
>>> import socket
>>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> dir(s)
['__class__', '__delattr__', '__doc__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__slots__', '__str__', '__subclasshook__', '__weakref__', '_sock', 'accept', 'bind', 'close', 'connect', 'connect_ex', 'dup', 'family', 'fileno', 'getpeername', 'getsockname', 'getsockopt', 'gettimeout', 'listen', 'makefile', 'proto', 'recv', 'recv_into', 'recvfrom', 'recvfrom_into', 'send', 'sendall', 'sendto', 'setblocking', 'setsockopt', 'settimeout', 'shutdown', 'type']
这归结为片段:
for method in _delegate_methods:
setattr(self, method, getattr(_sock, method))
在 socket.py 实现中。
可以让 pylint 接受这种风格(并验证它)还是唯一选择忽略“无成员”警告# pylint: disable-msg=E1101
?