Files
typeshed/stdlib/3/cgi.pyi
2016-12-21 01:15:26 -08:00

5 lines
142 B
Python

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