mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
drop ellipsis assignments from module vars, classvars and instance attrs (#5914)
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
This commit is contained in:
@@ -663,7 +663,7 @@ def cast(typ: object, val: Any) -> Any: ...
|
||||
# NamedTuple is special-cased in the type checker
|
||||
class NamedTuple(Tuple[Any, ...]):
|
||||
_field_types: collections.OrderedDict[str, Type[Any]]
|
||||
_field_defaults: dict[str, Any] = ...
|
||||
_field_defaults: dict[str, Any]
|
||||
_fields: Tuple[str, ...]
|
||||
_source: str
|
||||
def __init__(self, typename: str, fields: Iterable[Tuple[str, Any]] = ..., **kwargs: Any) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user