mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
5 lines
136 B
Python
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]]: ...
|