Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/library/
Dhttp.server.rst465 .. class:: CGIHTTPRequestHandler(request, client_address, server)
473 CGI scripts run by the :class:`CGIHTTPRequestHandler` class cannot execute
487 The :class:`CGIHTTPRequestHandler` defines the following data member:
494 The :class:`CGIHTTPRequestHandler` defines the following method:
507 :class:`CGIHTTPRequestHandler` is being removed in 3.15. CGI has not
513 :class:`CGIHTTPRequestHandler` can be enabled in the command line by passing
521 because :class:`CGIHTTPRequestHandler` is being removed.
525 :class:`CGIHTTPRequestHandler` and the ``--cgi`` command line option
/external/python/cpython3/Doc/deprecations/
Dpending-removal-in-3.15.rst23 * The obsolete and rarely used :class:`~http.server.CGIHTTPRequestHandler`
/external/python/cpython3/Lib/http/
Dserver.py979 class CGIHTTPRequestHandler(SimpleHTTPRequestHandler): class
1302 handler_class = CGIHTTPRequestHandler
/external/python/cpython3/Lib/test/
Dtest_httpservers.py8 SimpleHTTPRequestHandler, CGIHTTPRequestHandler
703 class request_handler(NoLogRequestHandler, CGIHTTPRequestHandler):
941 CGIHTTPRequestHandler.cgi_directories.append('/sub/dir/cgi-bin')
947 CGIHTTPRequestHandler.cgi_directories.remove('/sub/dir/cgi-bin')
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a6.rst626 CGIHTTPRequestHandler of http.server now logs the CGI script exit code,
D3.10.0a3.rst260 CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed. Replace the
D3.13.0a1.rst2297 :class:`http.server.CGIHTTPRequestHandler` has been deprecated for removal
/external/python/cpython3/Doc/whatsnew/
D3.13.rst1816 * Deprecate :class:`~http.server.CGIHTTPRequestHandler`,
/external/python/cpython3/Misc/
DHISTORY16688 - Patch #3133: http.server.CGIHTTPRequestHandler did not work on windows.