mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51: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:
@@ -5,7 +5,7 @@ _T = TypeVar("_T")
|
||||
_TraceDispatch = Callable[[FrameType, str, Any], Any] # TODO: Recursive type
|
||||
_ExcInfo = Tuple[Type[BaseException], BaseException, FrameType]
|
||||
|
||||
GENERATOR_AND_COROUTINE_FLAGS: int = ...
|
||||
GENERATOR_AND_COROUTINE_FLAGS: int
|
||||
|
||||
class BdbQuit(Exception): ...
|
||||
|
||||
@@ -65,9 +65,9 @@ class Bdb:
|
||||
|
||||
class Breakpoint:
|
||||
|
||||
next: int = ...
|
||||
bplist: dict[Tuple[str, int], list[Breakpoint]] = ...
|
||||
bpbynumber: list[Breakpoint | None] = ...
|
||||
next: int
|
||||
bplist: dict[Tuple[str, int], list[Breakpoint]]
|
||||
bpbynumber: list[Breakpoint | None]
|
||||
|
||||
funcname: str | None
|
||||
func_first_executable_line: int | None
|
||||
|
||||
Reference in New Issue
Block a user