Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Dwsgiref.rst484 This class is a subclass of :class:`BaseHandler`. It overrides the
492 .. class:: BaseHandler()
498 :class:`BaseHandler` instances have only one method intended for external use:
501 .. method:: BaseHandler.run(app)
505 All of the other :class:`BaseHandler` methods are invoked by this method in the
512 .. method:: BaseHandler._write(data)
515 method actually transmits the data; :class:`BaseHandler` just separates write
520 .. method:: BaseHandler._flush()
526 .. method:: BaseHandler.get_stdin()
532 .. method:: BaseHandler.get_stderr()
[all …]
Durllib2.rst101 order given. *handler*\s can be either instances of :class:`BaseHandler`, or
102 subclasses of :class:`BaseHandler` (in which case it must be possible to call
114 Beginning in Python 2.3, a :class:`BaseHandler` subclass may also change its
194 The :class:`OpenerDirector` class opens URLs via :class:`BaseHandler`\ s chained
198 .. class:: BaseHandler()
457 *handler* should be an instance of :class:`BaseHandler`. The following
531 BaseHandler Objects
534 :class:`BaseHandler` objects provide a couple of methods that are directly
539 .. method:: BaseHandler.add_parent(director)
544 .. method:: BaseHandler.close()
[all …]
/external/python/cpython2/Lib/
Durllib2.py518 class BaseHandler: class
537 class HTTPErrorProcessor(BaseHandler):
554 class HTTPDefaultErrorHandler(BaseHandler):
558 class HTTPRedirectHandler(BaseHandler):
735 class ProxyHandler(BaseHandler):
902 class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
913 class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
1085 class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1103 class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1115 class AbstractHTTPHandler(BaseHandler):
[all …]
/external/python/cpython2/Lib/wsgiref/
Dhandlers.py42 class BaseHandler: class
358 class SimpleHandler(BaseHandler):
/external/python/cpython2/Lib/test/
Dtest_wsgiref.py4 from wsgiref.handlers import BaseHandler, BaseCGIHandler
420 h = BaseHandler()
Dtest_urllib2.py411 class MockHTTPHandler(urllib2.BaseHandler):
1269 class FooHandler(urllib2.BaseHandler):
1271 class BarHandler(urllib2.BaseHandler):