mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
Mark atomicwrites as complete (#8883)
This commit is contained in:
@@ -1 +0,0 @@
|
||||
atomicwrites.AtomicWriter.get_fileobject
|
||||
@@ -1 +1,4 @@
|
||||
version = "1.4.*"
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = false
|
||||
|
||||
@@ -2,6 +2,10 @@ 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: ...
|
||||
@@ -10,7 +14,9 @@ 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, dir: StrOrBytesPath | None = ..., **kwargs: Any) -> IO[Any]: ...
|
||||
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: ...
|
||||
|
||||
Reference in New Issue
Block a user