Found via `codespell -q 3 -L alo,asend,ba,nams,spawnve`
This commit is contained in:
luzpaz
2021-11-08 21:23:15 -05:00
committed by GitHub
parent 6e646f43dd
commit b95b729b9e
10 changed files with 17 additions and 17 deletions

View File

@@ -153,7 +153,7 @@ class type(object):
def __new__(cls: Type[_TT], __name: str, __bases: Tuple[type, ...], __namespace: dict[str, Any], **kwds: Any) -> _TT: ...
def __call__(self, *args: Any, **kwds: Any) -> Any: ...
def __subclasses__(self: _TT) -> list[_TT]: ...
# Note: the documentation doesnt specify what the return type is, the standard
# Note: the documentation doesn't specify what the return type is, the standard
# implementation seems to be returning a list.
def mro(self) -> list[type]: ...
def __instancecheck__(self, __instance: Any) -> bool: ...