Added stub for toaiff module (#1455)

This commit is contained in:
Ashwini Chaudhary
2017-07-03 09:54:21 +05:30
committed by Jelle Zijlstra
parent 489696e9a1
commit 83d5ba157c

16
stdlib/2/toaiff.pyi Normal file
View File

@@ -0,0 +1,16 @@
# 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
__all__: List[str]
table: Dict[str, Template]
t: Template
uncompress: Template
class error(Exception): ...
def toaiff(filename: str) -> str: ...
def _toaiff(filename: str, temps: List[str]) -> str: ...