Remove stubs for atomicwrites (#8925)

This commit is contained in:
Alex Waygood
2022-10-19 01:33:28 +01:00
committed by GitHub
parent ae34688034
commit d22ebe7676
2 changed files with 0 additions and 31 deletions

View File

@@ -1,5 +0,0 @@
version = "1.4.*"
no_longer_updated = true
[tool.stubtest]
ignore_missing_stub = false

View File

@@ -1,26 +0,0 @@
from _typeshed import StrOrBytesPath
from collections.abc import Callable
from contextlib import AbstractContextManager
from typing import IO, Any, AnyStr
from typing_extensions import Literal
PY2: Literal[False]
DEFAULT_MODE: Literal["w"]
def replace_atomic(src: AnyStr, dst: AnyStr) -> None: ...
def move_atomic(src: AnyStr, dst: AnyStr) -> None: ...
class AtomicWriter:
def __init__(self, path: StrOrBytesPath, mode: str = ..., overwrite: bool = ...) -> None: ...
def open(self) -> AbstractContextManager[IO[Any]]: ...
def _open(self, get_fileobject: Callable[..., IO[AnyStr]]) -> AbstractContextManager[IO[AnyStr]]: ...
def get_fileobject(
self, suffix: str = ..., prefix: str = ..., dir: StrOrBytesPath | None = ..., **kwargs: Any
) -> IO[Any]: ...
def sync(self, f: IO[Any]) -> None: ...
def commit(self, f: IO[Any]) -> None: ...
def rollback(self, f: IO[Any]) -> None: ...
def atomic_write(
path: StrOrBytesPath, writer_cls: type[AtomicWriter] = ..., **cls_kwargs: object
) -> AbstractContextManager[IO[Any]]: ...