Add collections.__all__ (#7296)

This commit is contained in:
Alex Waygood
2022-02-19 20:26:23 +00:00
committed by GitHub
parent f86c918829
commit cc1dd6d6ec

View File

@@ -12,6 +12,8 @@ if sys.version_info >= (3, 10):
else:
from _collections_abc import *
__all__ = ["ChainMap", "Counter", "OrderedDict", "UserDict", "UserList", "UserString", "defaultdict", "deque", "namedtuple"]
_S = TypeVar("_S")
_T = TypeVar("_T")
_T1 = TypeVar("_T1")