Home | History | Annotate | Download | only in test

Lines Matching defs:urlopen

39         f = _open_with_retry(urllib.urlopen, "http://www.python.org/")

43 """Tests urllib.urlopen using the network.
57 def urlopen(self, *args):
58 return _open_with_retry(urllib.urlopen, *args)
62 open_url = self.urlopen("http://www.python.org/")
66 "urlopen lacks the %s attribute" % attr)
74 open_url = self.urlopen("http://www.python.org/")
85 open_url = self.urlopen("http://www.python.org/")
98 open_url = self.urlopen(URL)
122 open_url = self.urlopen("http://www.python.org/")
141 # urllib.urlopen, "http://www.sadflkjsasadf.com/")
142 urllib.urlopen, "http://sadflkjsasf.i.nvali.d/")
199 ("urllib.urlopen.. has been removed", DeprecationWarning)):