Home
last modified time | relevance | path

Searched refs:HTTPHandler (Results 1 – 25 of 27) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_urllib2.py1268 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/
Dtest_urllib2.py1313 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):
Dtest_logging.py585 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/
Dlogging.handlers.rst723 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.
Durllib2.rst107 :class:`UnknownHandler`, :class:`HTTPHandler`, :class:`HTTPDefaultErrorHandler`,
300 .. class:: HTTPHandler()
849 HTTPHandler Objects
853 .. method:: HTTPHandler.http_open(req)
Dlogging.config.rst727 class=handlers.HTTPHandler
/external/python/cpython3/Doc/library/
Dlogging.handlers.rst926 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.
Durllib.request.rst138 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)
Dlogging.config.rst781 class=handlers.HTTPHandler
/external/python/cpython2/Lib/
Durllib2.py493 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
1225 class HTTPHandler(AbstractHTTPHandler): class
/external/python/cpython2/Lib/logging/
Dhandlers.py1065 class HTTPHandler(logging.Handler): class
/external/python/cpython3/Lib/logging/
Dhandlers.py1143 class HTTPHandler(logging.Handler): class
/external/googletest/googletest/scripts/
Dupload.py378 opener.add_handler(urllib2.HTTPHandler())
/external/python/cpython3/Lib/urllib/
Drequest.py577 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
1368 class HTTPHandler(AbstractHTTPHandler): class
/external/python/cpython2/Doc/howto/
Durllib2.rst495 environment variable is set), ``UnknownHandler``, ``HTTPHandler``,
Dlogging.rst905 #. :class:`~handlers.HTTPHandler` instances send messages to an HTTP
/external/python/cpython3/Doc/howto/
Durllib2.rst518 environment variable is set), ``UnknownHandler``, ``HTTPHandler``,
Dlogging.rst958 #. :class:`~handlers.HTTPHandler` instances send messages to an HTTP
Dlogging-cookbook.rst1232 :class:`~handlers.HTTPHandler`).
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a5.rst616 Add getConnection method to logging HTTPHandler to enable custom
D3.5.2rc1.rst583 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by
D3.6.0a1.rst945 Honor debuglevel flag in urllib.request.HTTPHandler. Patch contributed by
D3.5.0a1.rst1422 Add *context* parameter to logging.handlers.HTTPHandler.
/external/python/six/documentation/
Dindex.rst789 * :class:`py2:urllib2.HTTPHandler`
/external/python/cpython3/Doc/whatsnew/
D3.5.rst1425 The :class:`handlers.HTTPHandler <logging.handlers.HTTPHandler>` class now

12