(Merge 3.2) Issue #12133: fix a ResourceWarning in urllib.request

AbstractHTTPHandler.do_open() of urllib.request closes the HTTP connection if
its getresponse() method fails with a socket error. Patch written by Ezio
Melotti.
This commit is contained in:
Victor Stinner 2011-06-17 14:02:18 +02:00
commit f073dc286c
3 changed files with 9 additions and 0 deletions

View File

@ -318,6 +318,9 @@ class MockHTTPClass:
def getresponse(self): def getresponse(self):
return MockHTTPResponse(MockFile(), {}, 200, "OK") return MockHTTPResponse(MockFile(), {}, 200, "OK")
def close(self):
pass
class MockHandler: class MockHandler:
# useful for testing handler machinery # useful for testing handler machinery
# see add_ordered_mock_handlers() docstring # see add_ordered_mock_handlers() docstring

View File

@ -1146,6 +1146,8 @@ class AbstractHTTPHandler(BaseHandler):
r = h.getresponse() # an HTTPResponse instance r = h.getresponse() # an HTTPResponse instance
except socket.error as err: except socket.error as err:
raise URLError(err) raise URLError(err)
finally:
h.close()
r.url = req.get_full_url() r.url = req.get_full_url()
# This line replaces the .msg attribute of the HTTPResponse # This line replaces the .msg attribute of the HTTPResponse

View File

@ -193,6 +193,10 @@ Core and Builtins
Library Library
------- -------
- Issue #12133: AbstractHTTPHandler.do_open() of urllib.request closes the HTTP
connection if its getresponse() method fails with a socket error. Patch
written by Ezio Melotti.
- Issue #12240: Allow multiple setup hooks in packaging's setup.cfg files. - Issue #12240: Allow multiple setup hooks in packaging's setup.cfg files.
Original patch by Erik Bray. Original patch by Erik Bray.