Searched refs:BaseHTTPRequestHandler (Results 1 – 25 of 26) sorted by relevance
12
/third_party/cef/tools/ |
D | crash_server.py | 128 from BaseHTTPServer import BaseHTTPRequestHandler, HTTPServer 131 from http.server import BaseHTTPRequestHandler, HTTPServer 146 class CrashHTTPRequestHandler(BaseHTTPRequestHandler): 150 BaseHTTPRequestHandler.__init__(self, *args)
|
/third_party/grpc/tools/run_tests/python_utils/ |
D | port_server.py | 20 from six.moves.BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler 142 class Handler(BaseHTTPRequestHandler): 147 BaseHTTPRequestHandler.setup(self)
|
/third_party/python/Lib/test/ |
D | ssl_servers.py | 9 SimpleHTTPRequestHandler, BaseHTTPRequestHandler) 86 class StatsRequestHandler(BaseHTTPRequestHandler): 117 BaseHTTPRequestHandler.log_request(self, format, *args)
|
D | test_urllib2_localnet.py | 203 class BasicAuthHandler(http.server.BaseHTTPRequestHandler): 213 http.server.BaseHTTPRequestHandler.__init__(self, *args, **kwargs) 247 class FakeProxyHandler(http.server.BaseHTTPRequestHandler): 258 http.server.BaseHTTPRequestHandler.__init__(self, *args, **kwargs) 400 class FakeHTTPRequestHandler(http.server.BaseHTTPRequestHandler):
|
D | test_robotparser.py | 9 from http.server import BaseHTTPRequestHandler, HTTPServer 302 class RobotHandler(BaseHTTPRequestHandler):
|
D | test_httpservers.py | 7 from http.server import BaseHTTPRequestHandler, HTTPServer, \ 89 class request_handler(NoLogRequestHandler, BaseHTTPRequestHandler): 296 class request_handler(BaseHTTPRequestHandler):
|
D | test_xmlrpc.py | 312 class RequestHandler(http.server.BaseHTTPRequestHandler):
|
D | test_logging.py | 58 from http.server import HTTPServer, BaseHTTPRequestHandler 946 class DelegatingHTTPRequestHandler(BaseHTTPRequestHandler):
|
/third_party/python/Lib/wsgiref/ |
D | simple_server.py | 13 from http.server import BaseHTTPRequestHandler, HTTPServer 71 class WSGIRequestHandler(BaseHTTPRequestHandler):
|
/third_party/grpc/test/core/http/ |
D | test_server.py | 40 class Handler(BaseHTTPServer.BaseHTTPRequestHandler):
|
/third_party/python/Lib/xmlrpc/ |
D | server.py | 108 from http.server import BaseHTTPRequestHandler 434 class SimpleXMLRPCRequestHandler(BaseHTTPRequestHandler): 578 BaseHTTPRequestHandler.log_request(self, code, size) 678 message, explain = BaseHTTPRequestHandler.responses[code]
|
/third_party/python/Doc/library/ |
D | http.server.rst | 29 def run(server_class=HTTPServer, handler_class=BaseHTTPRequestHandler): 56 .. class:: BaseHTTPRequestHandler(request, client_address, server) 61 :class:`BaseHTTPRequestHandler` provides a number of class and instance 71 :class:`BaseHTTPRequestHandler` has the following instance variables: 132 :class:`BaseHTTPRequestHandler` has the following attributes: 180 A :class:`BaseHTTPRequestHandler` instance has the following methods: 334 :class:`BaseHTTPRequestHandler`. This class implements the :func:`do_GET`
|
D | urllib.error.rst | 46 :attr:`http.server.BaseHTTPRequestHandler.responses`.
|
D | http.client.rst | 139 and :attr:`http.server.BaseHTTPRequestHandler.headers`).
|
D | wsgiref.rst | 313 :class:`http.server.BaseHTTPRequestHandler` that will be used to process
|
/third_party/ninja/src/ |
D | browse.py | 167 class RequestHandler(httpserver.BaseHTTPRequestHandler):
|
/third_party/python/Lib/http/ |
D | server.py | 148 class BaseHTTPRequestHandler(socketserver.StreamRequestHandler): class 628 class SimpleHTTPRequestHandler(BaseHTTPRequestHandler): 1233 def test(HandlerClass=BaseHTTPRequestHandler,
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a2.rst | 37 BaseHTTPRequestHandler again logs response code as numeric, not as
|
D | 3.6.0a2.rst | 281 Stop http.server.BaseHTTPRequestHandler.send_error() from sending a message
|
D | 3.5.2rc1.rst | 436 Stop http.server.BaseHTTPRequestHandler.send_error() from sending a message
|
/third_party/python/Doc/howto/ |
D | urllib2.rst | 254 :attr:`http.server.BaseHTTPRequestHandler.responses` is a useful dictionary of
|
/third_party/python/Doc/whatsnew/ |
D | 3.3.rst | 1414 :class:`http.server.BaseHTTPRequestHandler` now buffers the headers and writes 1415 them all at once when :meth:`~http.server.BaseHTTPRequestHandler.end_headers` is 1416 called. A new method :meth:`~http.server.BaseHTTPRequestHandler.flush_headers`
|
D | 3.2.rst | 2409 (:issue:`1569291` by Alexander Belopolsky). The :class:`BaseHTTPRequestHandler`
|
D | 3.4.rst | 958 :meth:`~http.server.BaseHTTPRequestHandler.send_error` now accepts an
|
/third_party/python/Lib/ |
D | pydoc.py | 2346 class DocHandler(http.server.BaseHTTPRequestHandler):
|
12