# Stubs for tempfile # Ron Murawski # based on http://docs.python.org/3.3/library/tempfile.html from types import TracebackType from typing import BinaryIO, Optional, Tuple, Type # global variables tempdir = ... # type: str template = ... # type: str # TODO text files # function stubs def TemporaryFile( mode: str = ..., buffering: int = ..., encoding: str = ..., newline: str = ..., suffix: str = ..., prefix: str = ..., dir: str = ...) -> BinaryIO: ... def NamedTemporaryFile( mode: str = ..., buffering: int = ..., encoding: str = ..., newline: str = ..., suffix: str = ..., prefix: str = ..., dir: str = ..., delete: bool =...) -> BinaryIO: ... def SpooledTemporaryFile( max_size: int = ..., mode: str = ..., buffering: int = ..., encoding: str = ..., newline: str = ..., suffix: str = ..., prefix: str = ..., dir: str = ...) -> BinaryIO: ... class TemporaryDirectory: name = ... # type: str def __init__(self, suffix: str = ..., prefix: str = ..., dir: str = ...) -> None: ... def cleanup(self) -> None: ... def __enter__(self) -> str: ... def __exit__(self, exc_type: Optional[Type[BaseException]], exc_val: Optional[Exception], exc_tb: Optional[TracebackType]) -> bool: ... def mkstemp(suffix: str = ..., prefix: str = ..., dir: str = ..., text: bool = ...) -> Tuple[int, str]: ... def mkdtemp(suffix: str = ..., prefix: str = ..., dir: str = ...) -> str: ... def mktemp(suffix: str = ..., prefix: str = ..., dir: str = ...) -> str: ... def gettempdir() -> str: ... def gettempprefix() -> str: ...