Import Match and Pattern from re, not typing (#8277)

This commit is contained in:
Alex Waygood
2022-07-12 14:32:48 +01:00
committed by GitHub
parent 27db37240a
commit 6348a58b8b
78 changed files with 142 additions and 90 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
from _typeshed import SupportsRead
from collections.abc import Callable, MutableMapping
from pathlib import PurePath
from typing import Any, Generic, Pattern, TypeVar, overload
from re import Pattern
from typing import Any, Generic, TypeVar, overload
from typing_extensions import TypeAlias
_MutableMappingT = TypeVar("_MutableMappingT", bound=MutableMapping[str, Any])