Use lowercase set/deque in stdlib subdirectories (#6350)

This commit is contained in:
Alex Waygood
2021-11-20 12:20:25 +00:00
committed by GitHub
parent 5c8e68f0eb
commit 029cf555e7
11 changed files with 44 additions and 42 deletions

View File

@@ -1,6 +1,6 @@
import queue
import sys
from collections.abc import Iterable, Mapping, Set
from collections.abc import Iterable, Mapping, Set # equivalent to typing.AbstractSet, not builtins.set
from threading import Lock, Semaphore, Thread
from typing import Any, Callable, Generic, Tuple, TypeVar
from weakref import ref