8000 stdlib: Add several missing `@abstractmethod` decorators by AlexWaygood · Pull Request #7443 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

stdlib: Add several missing @abstractmethod decorators #7443

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Mar 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
  • Loading branch information
pre-commit-ci[bot] committed Mar 6, 2022
commit 12f7c45dba1b571f0faa2b8cd2eeb8717e7a6d6b
4 changes: 1 addition & 3 deletions stdlib/os/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -725,9 +725,7 @@ def rmdir(path: StrOrBytesPath, *, dir_fd: int | None = ...) -> None: ...

class _ScandirIterator(Iterator[DirEntry[AnyStr]], AbstractContextManager[_ScandirIterator[AnyStr]]):
def __next__(self) -> DirEntry[AnyStr]: ...
def __exit__(
self, *args: object
) -> None: ...
def __exit__(self, *args: object) -> None: ...
def close(self) -> None: ...

if sys.version_info >= (3, 7):
Expand Down
0