Add _weakrefset.__all__ (#7286)

This commit is contained in:
Alex Waygood
2022-02-19 20:21:29 +00:00
committed by GitHub
parent 5edf22189f
commit 748e4d3a20

View File

@@ -5,6 +5,8 @@ from typing import Any, Generic, Iterable, Iterator, MutableSet, TypeVar
if sys.version_info >= (3, 9):
from types import GenericAlias
__all__ = ["WeakSet"]
_S = TypeVar("_S")
_T = TypeVar("_T")