Home
last modified time | relevance | path

Searched refs:BaseHandler (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Doc/library/
Dwsgiref.rst515 This class is a subclass of :class:`BaseHandler`. It overrides the
526 .. class:: BaseHandler()
532 :class:`BaseHandler` instances have only one method intended for external use:
535 .. method:: BaseHandler.run(app)
539 All of the other :class:`BaseHandler` methods are invoked by this method in the
546 .. method:: BaseHandler._write(data)
549 method actually transmits the data; :class:`BaseHandler` just separates write
554 .. method:: BaseHandler._flush()
560 .. method:: BaseHandler.get_stdin()
566 .. method:: BaseHandler.get_stderr()
[all …]
Durllib.request.rst138 order given. *handler*\s can be either instances of :class:`BaseHandler`, or
139 subclasses of :class:`BaseHandler` (in which case it must be possible to call
150 A :class:`BaseHandler` subclass may also change its :attr:`handler_order`
273 The :class:`OpenerDirector` class opens URLs via :class:`BaseHandler`\ s chained
277 .. class:: BaseHandler()
613 *handler* should be an instance of :class:`BaseHandler`. The following methods
644 .. |protocol_open| replace:: :meth:`BaseHandler.<protocol>_open`
645 .. |http_error_nnn| replace:: :meth:`BaseHandler.http_error_\<nnn\>`
646 .. |protocol_request| replace:: :meth:`BaseHandler.<protocol>_request`
647 .. |protocol_response| replace:: :meth:`BaseHandler.<protocol>_response`
[all …]
Dunittest.mock.rst2413 'BaseHandler',
/third_party/python/Lib/urllib/
Drequest.py605 class BaseHandler: class
624 class HTTPErrorProcessor(BaseHandler):
641 class HTTPDefaultErrorHandler(BaseHandler):
645 class HTTPRedirectHandler(BaseHandler):
791 class ProxyHandler(BaseHandler):
1050 class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1061 class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1226 class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1244 class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1256 class AbstractHTTPHandler(BaseHandler):
[all …]
/third_party/python/Lib/wsgiref/
Dhandlers.py94 class BaseHandler: class
434 class SimpleHandler(BaseHandler):
/third_party/python/Lib/test/
Dtest_wsgiref.py9 from wsgiref.handlers import BaseHandler, BaseCGIHandler, SimpleHandler
623 h = BaseHandler()
Dtest_urllib2.py470 class MockHTTPHandler(urllib.request.BaseHandler):
510 class MockHTTPHandlerCheckAuth(urllib.request.BaseHandler):
1751 class FooHandler(urllib.request.BaseHandler):
1755 class BarHandler(urllib.request.BaseHandler):
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1231 Fix double exceptions in :class:`wsgiref.handlers.BaseHandler` by calling
1232 its :meth:`~wsgiref.handlers.BaseHandler.close` method only when no
D3.8.0a4.rst718 :class:`wsgiref.handlers.BaseHandler` now handles abrupt client connection
D3.5.2rc1.rst935 Avoid potential ValueError in BaseHandler.start_response. Initial patch by
D3.6.0a1.rst1518 Avoid potential ValueError in BaseHandler.start_response. Initial patch by