mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-03 10:03:32 +08:00
Use variable annotations everywhere (#2909)
This commit is contained in:
committed by
Sebastian Rittau
parent
b3c76aab49
commit
efb67946f8
@@ -18,12 +18,12 @@ def get_referrers(*objs: Any) -> List[Any]: ...
|
||||
def get_referents(*objs: Any) -> List[Any]: ...
|
||||
def is_tracked(obj: Any) -> bool: ...
|
||||
|
||||
garbage = ... # type: List[Any]
|
||||
garbage: List[Any]
|
||||
|
||||
DEBUG_STATS = ... # type: int
|
||||
DEBUG_COLLECTABLE = ... # type: int
|
||||
DEBUG_UNCOLLECTABLE = ... # type: int
|
||||
DEBUG_INSTANCES = ... # type: int
|
||||
DEBUG_OBJECTS = ... # type: int
|
||||
DEBUG_SAVEALL = ... # type: int
|
||||
DEBUG_LEAK = ... # type: int
|
||||
DEBUG_STATS: int
|
||||
DEBUG_COLLECTABLE: int
|
||||
DEBUG_UNCOLLECTABLE: int
|
||||
DEBUG_INSTANCES: int
|
||||
DEBUG_OBJECTS: int
|
||||
DEBUG_SAVEALL: int
|
||||
DEBUG_LEAK: int
|
||||
|
||||
Reference in New Issue
Block a user