Files
typeshed/stdlib/3/cgi.pyi
2016-07-15 15:42:51 -07:00

5 lines
136 B
Python

from typing import Tuple
def escape(s: str, quote: bool = ...) -> str: ...
def parse_header(s: str) -> Tuple[str, Dict[str, str]]: ...