Home
last modified time | relevance | path

Searched refs:CGIHTTPRequestHandler (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Doc/library/
Dcgihttpserver.rst26 CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute
33 .. class:: CGIHTTPRequestHandler(request, client_address, server)
49 The :class:`CGIHTTPRequestHandler` defines the following data member:
57 The :class:`CGIHTTPRequestHandler` defines the following methods:
/external/python/cpython2/Lib/
DCGIHTTPServer.py35 class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler): class
372 def test(HandlerClass = CGIHTTPRequestHandler,
/external/python/cpython3/Doc/library/
Dhttp.server.rst440 .. class:: CGIHTTPRequestHandler(request, client_address, server)
448 CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute
462 The :class:`CGIHTTPRequestHandler` defines the following data member:
469 The :class:`CGIHTTPRequestHandler` defines the following method:
480 :class:`CGIHTTPRequestHandler` can be enabled in the command line by passing
/external/python/cpython3/Misc/NEWS.d/
D3.9.1.rst19 CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed. Replace the
D3.9.0a6.rst626 CGIHTTPRequestHandler of http.server now logs the CGI script exit code,
/external/python/cpython3/Lib/http/
Dserver.py960 class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): class
1275 handler_class = CGIHTTPRequestHandler
/external/python/cpython2/Lib/test/
Dtest_httpservers.py22 from CGIHTTPServer import CGIHTTPRequestHandler
455 class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler):
/external/python/cpython3/Lib/test/
Dtest_httpservers.py8 SimpleHTTPRequestHandler, CGIHTTPRequestHandler
602 class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler):
827 CGIHTTPRequestHandler.cgi_directories.append('/sub/dir/cgi-bin')
833 CGIHTTPRequestHandler.cgi_directories.remove('/sub/dir/cgi-bin')
/external/python/cpython3/Misc/
DHISTORY16688 - Patch #3133: http.server.CGIHTTPRequestHandler did not work on windows.