使用Python 3中的urllib实现套接字ResourceWarning
我正在使用urllib.request.urlopen()从我试图测试的Web服务中获取GET。
这将返回一个HTTPResponse对象,然后我读取()以获取响应正文。
但是我总是从socket.py中看到关于一个未关闭套接字的ResourceWarning
这是相关的功能:
from urllib.request import Request, urlopen
def get_from_webservice(url):
""" GET from the webservice """
req = Request(url, method="GET", headers=HEADERS)
with urlopen(req) as rsp:
body = rsp.read().decode('utf-8')
return json.loads(body)
以下是程序输出中显示的警告:
$ ./test/test_webservices.py
/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/socket.py:359: ResourceWarning: unclosed <socket.socket object, fd=5, family=30, type=1, proto=6>
self._sock = None
.s
----------------------------------------------------------------------
Ran 2 tests in 0.010s
OK (skipped=1)
如果有什么我可以对HTTPResponse(或Request?)做些什么来使它完全关闭它的套接字,我真的很想知道,因为这段代码是用于我的单元测试; 我不喜欢忽略任何地方的警告,但特别是不存在。
我不知道这是否是答案,但它是答案的一部分。
如果我将头部“connection:close”添加到来自我的Web服务的响应中,则HTTPResponse对象似乎可以正常清理而不会发出警告。
实际上,HTTP Spec(http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html)说:
不支持持久连接的HTTP / 1.1应用程序必须在每条消息中包含“关闭”连接选项。
所以问题出在服务器端(即我的错!)。 如果您无法控制来自服务器的标题,我不知道您可以做什么。
链接地址: http://www.djcxy.com/p/11807.html上一篇: socket ResourceWarning using urllib in Python 3
下一篇: Split and join multiple logical "branches" of string data