我正在使用 urllib.request.urlopen() 从我正在尝试测试的 Web 服务中获取。
这将返回一个 HTTPResponse 对象,然后我使用 read() 来获取响应正文。
但我总是从 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?)做任何事情以使其干净地关闭其套接字,我真的很想知道,因为此代码用于我的单元测试;我不喜欢忽略任何地方的警告,尤其是不在那儿。