From cc1dd6d6eca609323abc45d22f0c28cea49dfb94 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 19 Feb 2022 20:26:23 +0000 Subject: [PATCH] Add `collections.__all__` (#7296) --- stdlib/collections/__init__.pyi | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stdlib/collections/__init__.pyi b/stdlib/collections/__init__.pyi index 05f5e95ba..6ea011763 100644 --- a/stdlib/collections/__init__.pyi +++ b/stdlib/collections/__init__.pyi @@ -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")