Files
typeshed/stdlib/2/toaiff.pyi
2019-10-13 16:22:03 -07:00

15 lines
337 B
Python

# Stubs for toaiff (Python 2)
# Source: https://hg.python.org/cpython/file/2.7/Lib/toaiff.py
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: ...