mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
Added stub for toaiff module (#1455)
This commit is contained in:
committed by
Jelle Zijlstra
parent
489696e9a1
commit
83d5ba157c
16
stdlib/2/toaiff.pyi
Normal file
16
stdlib/2/toaiff.pyi
Normal 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: ...
|
||||
Reference in New Issue
Block a user