mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
9 lines
227 B
Python
9 lines
227 B
Python
# Stubs for CGIHTTPServer (Python 2.7)
|
|
|
|
import SimpleHTTPServer
|
|
from typing import List
|
|
|
|
class CGIHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
|
|
cgi_directories: List[str]
|
|
def do_POST(self) -> None: ...
|