mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
7 lines
187 B
Python
7 lines
187 B
Python
import SimpleHTTPServer
|
|
from typing import List
|
|
|
|
class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
|
cgi_directories: List[str]
|
|
def do_POST(self) -> None: ...
|