8000 Add stubs for `operator.is_none` and `operator.is_not_none` by ZeroIntensity · Pull Request #12535 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

Add stubs for operator.is_none and operator.is_not_none #12535

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 5 commits into from
Aug 17, 2024
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 Aug 17, 2024
commit e443ca75d82934b5eba79434497ad8ffda2889e4
2 changes: 1 addition & 1 deletion stdlib/_operator.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sys
from _typeshed import SupportsGetItem
from collections.abc import Callable, Container, Iterable, MutableMapping, MutableSequence, Sequence
from typing import Any, AnyStr, Generic, Protocol, SupportsAbs, SupportsIndex, TypeVar, final, overload
from typing_extensions import ParamSpec, TypeAlias, TypeVarTuple, Unpack, TypeIs
from typing_extensions import ParamSpec, TypeAlias, TypeIs, TypeVarTuple, Unpack

_R = TypeVar("_R")
_T = TypeVar("_T")
Expand Down
0