mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-06 20:24:30 +08:00
15 lines
337 B
Python
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: ...
|