mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 12:14:27 +08:00
BaseHTTPRequestHandler is a subclass of StreamRequestHandler (#3579)
This commit is contained in:
committed by
Sebastian Rittau
parent
89c598f7c9
commit
2cff4e615e
@@ -18,7 +18,7 @@ if sys.version_info >= (3, 7):
|
||||
class ThreadingHTTPServer(socketserver.ThreadingMixIn, HTTPServer):
|
||||
daemon_threads: bool # undocumented
|
||||
|
||||
class BaseHTTPRequestHandler:
|
||||
class BaseHTTPRequestHandler(socketserver.StreamRequestHandler):
|
||||
client_address: Tuple[str, int]
|
||||
server: socketserver.BaseServer
|
||||
close_connection: bool
|
||||
|
||||
Reference in New Issue
Block a user