mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-30 08:04:24 +08:00
Use variable annotations everywhere (#2909)
This commit is contained in:
committed by
Sebastian Rittau
parent
b3c76aab49
commit
efb67946f8
@@ -3,13 +3,13 @@
|
||||
from typing import Any, Dict, List, Tuple
|
||||
|
||||
|
||||
DEBUG_COLLECTABLE = ... # type: int
|
||||
DEBUG_LEAK = ... # type: int
|
||||
DEBUG_SAVEALL = ... # type: int
|
||||
DEBUG_STATS = ... # type: int
|
||||
DEBUG_UNCOLLECTABLE = ... # type: int
|
||||
callbacks = ... # type: List[Any]
|
||||
garbage = ... # type: List[Any]
|
||||
DEBUG_COLLECTABLE: int
|
||||
DEBUG_LEAK: int
|
||||
DEBUG_SAVEALL: int
|
||||
DEBUG_STATS: int
|
||||
DEBUG_UNCOLLECTABLE: int
|
||||
callbacks: List[Any]
|
||||
garbage: List[Any]
|
||||
|
||||
def collect(generations: int = ...) -> int: ...
|
||||
def disable() -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user