From: Jeremy Hylton Date: Fri, 3 Aug 2007 21:03:02 +0000 (+0000) Subject: Fix an absurdly invasive test. X-Git-Tag: v3.0a1~537 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ec0c508b0ad5541a47eb77f4e7aa30a73596d681;p=python Fix an absurdly invasive test. Checks that an io object somewhere in the stack of wrappers is actually closed. --This line, and those below, will be ignored-- M test_urllib2net.py --- diff --git a/Lib/test/test_urllib2net.py b/Lib/test/test_urllib2net.py index 17b53949df..02d69cfabc 100644 --- a/Lib/test/test_urllib2net.py +++ b/Lib/test/test_urllib2net.py @@ -75,11 +75,9 @@ class CloseSocketTest(unittest.TestCase): # delve deep into response to fetch socket._socketobject response = urllib2.urlopen("http://www.python.org/") abused_fileobject = response.fp - self.assert_(abused_fileobject.__class__ is socket._fileobject) - httpresponse = abused_fileobject._sock + httpresponse = abused_fileobject.raw self.assert_(httpresponse.__class__ is httplib.HTTPResponse) fileobject = httpresponse.fp - self.assert_(fileobject.__class__ is socket._fileobject) self.assert_(not fileobject.closed) response.close()