mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
12 lines
243 B
Python
12 lines
243 B
Python
from pipes import Template
|
|
from typing import Dict, List
|
|
|
|
table: Dict[str, Template]
|
|
t: Template
|
|
uncompress: Template
|
|
|
|
class error(Exception): ...
|
|
|
|
def toaiff(filename: str) -> str: ...
|
|
def _toaiff(filename: str, temps: List[str]) -> str: ...
|