Skip to content

Commit 83d5ba1

Browse files
ashwchJelleZijlstra
authored andcommitted
Added stub for toaiff module (python#1455)
1 parent 489696e commit 83d5ba1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

stdlib/2/toaiff.pyi

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Stubs for toaiff (Python 2)
2+
3+
# Source: https://hg.python.org/cpython/file/2.7/Lib/toaiff.py
4+
from pipes import Template
5+
from typing import Dict, List
6+
7+
8+
__all__: List[str]
9+
table: Dict[str, Template]
10+
t: Template
11+
uncompress: Template
12+
13+
class error(Exception): ...
14+
15+
def toaiff(filename: str) -> str: ...
16+
def _toaiff(filename: str, temps: List[str]) -> str: ...

0 commit comments

Comments
 (0)