Add stub for cgi.parse_header(). (#371)

This commit is contained in:
Guido van Rossum
2016-07-15 15:42:51 -07:00
committed by Matthias Kramm
parent 395265b9fb
commit 6aeea2a872

View File

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