Kaydet (Commit) 1bd7d299 authored tarafından Senthil Kumaran's avatar Senthil Kumaran Kaydeden (comit) GitHub

Remove unused variable in test_urllibnet. (#1598)

üst f6e863d8
...@@ -11,6 +11,7 @@ import time ...@@ -11,6 +11,7 @@ import time
support.requires('network') support.requires('network')
class URLTimeoutTest(unittest.TestCase): class URLTimeoutTest(unittest.TestCase):
# XXX this test doesn't seem to test anything useful. # XXX this test doesn't seem to test anything useful.
...@@ -25,7 +26,7 @@ class URLTimeoutTest(unittest.TestCase): ...@@ -25,7 +26,7 @@ class URLTimeoutTest(unittest.TestCase):
def testURLread(self): def testURLread(self):
with support.transient_internet("www.example.com"): with support.transient_internet("www.example.com"):
f = urllib.request.urlopen("http://www.example.com/") f = urllib.request.urlopen("http://www.example.com/")
x = f.read() f.read()
class urlopenNetworkTests(unittest.TestCase): class urlopenNetworkTests(unittest.TestCase):
...@@ -188,6 +189,7 @@ class urlretrieveNetworkTests(unittest.TestCase): ...@@ -188,6 +189,7 @@ class urlretrieveNetworkTests(unittest.TestCase):
def test_reporthook(self): def test_reporthook(self):
records = [] records = []
def recording_reporthook(blocks, block_size, total_size): def recording_reporthook(blocks, block_size, total_size):
records.append((blocks, block_size, total_size)) records.append((blocks, block_size, total_size))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment