Searched refs:FancyURLopener (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Lib/ |
D | robotparser.py | 223 class URLopener(urllib.FancyURLopener): 225 urllib.FancyURLopener.__init__(self, *args) 235 return urllib.FancyURLopener.http_error_default(self, url, fp, errcode,
|
D | urllib.py | 80 opener = FancyURLopener(proxies=proxies, context=context) 82 opener = FancyURLopener() 93 opener = FancyURLopener(context=context) 95 _urlopener = opener = FancyURLopener() 616 class FancyURLopener(URLopener): class
|
/external/python/cpython2/Doc/library/ |
D | urllib.rst | 203 of the :class:`FancyURLopener` class and use it to perform their requested 205 :class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that 213 class AppURLopener(urllib.FancyURLopener): 328 you probably want to use :class:`FancyURLopener`. 333 :class:`URLopener` or :class:`FancyURLopener` and setting the class attribute 395 .. class:: FancyURLopener(...) 397 :class:`FancyURLopener` subclasses :class:`URLopener` providing default handling 418 When performing basic authentication, a :class:`FancyURLopener` instance calls 423 The :class:`FancyURLopener` class offers one additional method that should be 495 using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_urllibnet.py | 115 open_url = urllib.FancyURLopener().open(URL)
|
D | test_urllib.py | 292 for i in range(urllib.FancyURLopener().maxtries):
|
/external/python/cpython2/Tools/webchecker/ |
D | webchecker.py | 738 class MyURLopener(urllib.FancyURLopener): 744 apply(urllib.FancyURLopener.__init__, args) 774 return urllib.FancyURLopener.open_file(self, url)
|
/external/python/cpython3/Lib/test/ |
D | test_urllib.py | 40 opener = urllib.request.FancyURLopener(proxies=proxies) 42 opener = FancyURLopener() 52 def FancyURLopener(): function 56 return urllib.request.FancyURLopener() 375 for i in range(FancyURLopener().maxtries):
|
D | test_urllibnet.py | 98 open_url = urllib.request.FancyURLopener().open(URL)
|
/external/python/cpython3/Doc/library/ |
D | urllib.request.rst | 78 :class:`URLopener` and :class:`FancyURLopener` classes, this function 1310 >>> opener = urllib.request.FancyURLopener(proxies) 1318 >>> opener = urllib.request.FancyURLopener({}) 1389 you probably want to use :class:`FancyURLopener`. 1394 :class:`URLopener` or :class:`FancyURLopener` and setting the class attribute 1454 .. class:: FancyURLopener(...) 1458 :class:`FancyURLopener` subclasses :class:`URLopener` providing default handling 1479 When performing basic authentication, a :class:`FancyURLopener` instance calls 1484 The :class:`FancyURLopener` class offers one additional method that should be 1548 using the :mod:`ftplib` module, subclassing :class:`FancyURLopener`, or changing
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.12rc1.rst | 648 Reset FancyURLopener's redirect counter even if there is an exception.
|
/external/python/six/documentation/ |
D | index.rst | 764 * :class:`py2:urllib.FancyURLopener`
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 1193 Reset FancyURLopener's redirect counter even if there is an exception.
|
D | 3.6.0a1.rst | 1897 Reset FancyURLopener's redirect counter even if there is an exception.
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 2108 class FancyURLopener(URLopener): class
|