/external/python/cpython2/Lib/test/ |
D | test_urllib2.py | 1268 class MyHTTPHandler(urllib2.HTTPHandler): pass 1292 self.opener_has_handler(o, urllib2.HTTPHandler) 1293 o = build_opener(urllib2.HTTPHandler) 1294 self.opener_has_handler(o, urllib2.HTTPHandler) 1295 o = build_opener(urllib2.HTTPHandler()) 1296 self.opener_has_handler(o, urllib2.HTTPHandler) 1299 class MyOtherHTTPHandler(urllib2.HTTPHandler): pass
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2.py | 1313 class Handler(urllib.request.HTTPHandler): 1746 class MyHTTPHandler(urllib.request.HTTPHandler): 1775 self.opener_has_handler(o, urllib.request.HTTPHandler) 1776 o = build_opener(urllib.request.HTTPHandler) 1777 self.opener_has_handler(o, urllib.request.HTTPHandler) 1778 o = build_opener(urllib.request.HTTPHandler()) 1779 self.opener_has_handler(o, urllib.request.HTTPHandler) 1782 class MyOtherHTTPHandler(urllib.request.HTTPHandler):
|
D | test_logging.py | 585 self.assertRaises(ValueError, logging.handlers.HTTPHandler, 588 h = logging.handlers.HTTPHandler('localhost', '/log', method) 2018 self.h_hdlr = logging.handlers.HTTPHandler(host, '/frob',
|
/external/python/cpython2/Doc/library/ |
D | logging.handlers.rst | 723 HTTPHandler chapter 726 The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module, 731 .. class:: HTTPHandler(host, url, method='GET') 733 Returns a new instance of the :class:`HTTPHandler` class. The ``host`` can be 752 to specify a :class:`Formatter` for a :class:`HTTPHandler` has no effect.
|
D | urllib2.rst | 107 :class:`UnknownHandler`, :class:`HTTPHandler`, :class:`HTTPDefaultErrorHandler`, 300 .. class:: HTTPHandler() 849 HTTPHandler Objects 853 .. method:: HTTPHandler.http_open(req)
|
D | logging.config.rst | 727 class=handlers.HTTPHandler
|
/external/python/cpython3/Doc/library/ |
D | logging.handlers.rst | 926 HTTPHandler chapter 929 The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module, 934 .. class:: HTTPHandler(host, url, method='GET', secure=False, credentials=None, context=None) 936 Returns a new instance of the :class:`HTTPHandler` class. The *host* can be 967 :class:`~logging.Formatter` for a :class:`HTTPHandler` has no effect.
|
D | urllib.request.rst | 138 settings are detected), :class:`UnknownHandler`, :class:`HTTPHandler`, 196 has been provided, :class:`HTTPHandler` will set these headers according 413 .. class:: HTTPHandler() 1047 HTTPHandler Objects 1051 .. method:: HTTPHandler.http_open(req)
|
D | logging.config.rst | 781 class=handlers.HTTPHandler
|
/external/python/cpython2/Lib/ |
D | urllib2.py | 493 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 1225 class HTTPHandler(AbstractHTTPHandler): class
|
/external/python/cpython2/Lib/logging/ |
D | handlers.py | 1065 class HTTPHandler(logging.Handler): class
|
/external/python/cpython3/Lib/logging/ |
D | handlers.py | 1143 class HTTPHandler(logging.Handler): class
|
/external/googletest/googletest/scripts/ |
D | upload.py | 378 opener.add_handler(urllib2.HTTPHandler())
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 577 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 1368 class HTTPHandler(AbstractHTTPHandler): class
|
/external/python/cpython2/Doc/howto/ |
D | urllib2.rst | 495 environment variable is set), ``UnknownHandler``, ``HTTPHandler``,
|
D | logging.rst | 905 #. :class:`~handlers.HTTPHandler` instances send messages to an HTTP
|
/external/python/cpython3/Doc/howto/ |
D | urllib2.rst | 518 environment variable is set), ``UnknownHandler``, ``HTTPHandler``,
|
D | logging.rst | 958 #. :class:`~handlers.HTTPHandler` instances send messages to an HTTP
|
D | logging-cookbook.rst | 1232 :class:`~handlers.HTTPHandler`).
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0a5.rst | 616 Add getConnection method to logging HTTPHandler to enable custom
|
D | 3.5.2rc1.rst | 583 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by
|
D | 3.6.0a1.rst | 945 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by
|
D | 3.5.0a1.rst | 1422 Add *context* parameter to logging.handlers.HTTPHandler.
|
/external/python/six/documentation/ |
D | index.rst | 789 * :class:`py2:urllib2.HTTPHandler`
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1425 The :class:`handlers.HTTPHandler <logging.handlers.HTTPHandler>` class now
|