remove "= ..." from top-level values (#6930)

This commit is contained in:
Jelle Zijlstra
2022-01-16 08:38:00 -08:00
committed by GitHub
parent 425ba77bb2
commit 339bfbbfaa
8 changed files with 118 additions and 119 deletions

View File

@@ -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): ...