Add _threading_local.__all__ (#7285)

This commit is contained in:
Alex Waygood
2022-02-19 20:21:12 +00:00
committed by GitHub
parent 6e0520a9bd
commit 5edf22189f

View File

@@ -1,6 +1,7 @@
from typing import Any
from weakref import ReferenceType
__all__ = ["local"]
localdict = dict[Any, Any]
class _localimpl: