Searched refs:HTTPHandler (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1315 class Handler(urllib.request.HTTPHandler): 1748 class MyHTTPHandler(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) 1780 o = build_opener(urllib.request.HTTPHandler()) 1781 self.opener_has_handler(o, urllib.request.HTTPHandler) 1784 class MyOtherHTTPHandler(urllib.request.HTTPHandler):
|
D | test_logging.py | 592 self.assertRaises(ValueError, logging.handlers.HTTPHandler, 595 h = logging.handlers.HTTPHandler('localhost', '/log', method) 2030 self.h_hdlr = logging.handlers.HTTPHandler(host, '/frob',
|
/third_party/python/Doc/library/ |
D | logging.handlers.rst | 946 HTTPHandler chapter 949 The :class:`HTTPHandler` class, located in the :mod:`logging.handlers` module, 954 .. class:: HTTPHandler(host, url, method='GET', secure=False, credentials=None, context=None) 956 Returns a new instance of the :class:`HTTPHandler` class. The *host* can be 987 :class:`~logging.Formatter` for a :class:`HTTPHandler` has no effect.
|
D | urllib.request.rst | 143 settings are detected), :class:`UnknownHandler`, :class:`HTTPHandler`, 201 has been provided, :class:`HTTPHandler` will set these headers according 418 .. class:: HTTPHandler() 1052 HTTPHandler Objects 1056 .. method:: HTTPHandler.http_open(req)
|
D | logging.config.rst | 813 class=handlers.HTTPHandler
|
/third_party/googletest/googletest/scripts/ |
D | upload.py | 378 opener.add_handler(urllib2.HTTPHandler())
|
/third_party/python/Lib/logging/ |
D | handlers.py | 1173 class HTTPHandler(logging.Handler): class
|
/third_party/python/Lib/urllib/ |
D | request.py | 579 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, 1374 class HTTPHandler(AbstractHTTPHandler): class
|
/third_party/python/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.
|
/third_party/python/Doc/howto/ |
D | urllib2.rst | 518 environment variable is set), ``UnknownHandler``, ``HTTPHandler``,
|
D | logging.rst | 957 #. :class:`~handlers.HTTPHandler` instances send messages to an HTTP
|
D | logging-cookbook.rst | 1254 :class:`~handlers.HTTPHandler`).
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 1425 The :class:`handlers.HTTPHandler <logging.handlers.HTTPHandler>` class now
|
/third_party/python/Misc/ |
D | HISTORY | 1123 - Issue #22788: Add *context* parameter to logging.handlers.HTTPHandler. 12078 - logging: Enhanced HTTPHandler with secure and credentials initializers. 21496 inserting a "dummy" HTTPHandler after a ProxyHandler when building an
|