Searched refs:FancyURLopener (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | robotparser.py | 220 class URLopener(urllib.FancyURLopener): 222 urllib.FancyURLopener.__init__(self, *args) 232 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 | 198 of the :class:`FancyURLopener` class and use it to perform their requested 200 :class:`URLopener` or :class:`FancyURLopener`, then assign an instance of that 208 class AppURLopener(urllib.FancyURLopener): 323 you probably want to use :class:`FancyURLopener`. 328 :class:`URLopener` or :class:`FancyURLopener` and setting the class attribute 390 .. class:: FancyURLopener(...) 392 :class:`FancyURLopener` subclasses :class:`URLopener` providing default handling 413 When performing basic authentication, a :class:`FancyURLopener` instance calls 418 The :class:`FancyURLopener` class offers one additional method that should be 490 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 | 291 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/cpython2/Misc/ |
D | NEWS | 592 - Issue #12923: Reset FancyURLopener's redirect counter even if there is an
|