mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
Import Match and Pattern from re, not typing (#8277)
This commit is contained in:
@@ -4,6 +4,7 @@ import unittest.result
|
||||
from _typeshed import Self, SupportsDunderGE, SupportsDunderGT, SupportsDunderLE, SupportsDunderLT, SupportsRSub, SupportsSub
|
||||
from collections.abc import Callable, Container, Iterable, Mapping, Sequence, Set as AbstractSet
|
||||
from contextlib import AbstractContextManager
|
||||
from re import Pattern
|
||||
from types import TracebackType
|
||||
from typing import (
|
||||
Any,
|
||||
@@ -12,7 +13,6 @@ from typing import (
|
||||
Generic,
|
||||
NamedTuple,
|
||||
NoReturn,
|
||||
Pattern,
|
||||
Protocol,
|
||||
SupportsAbs,
|
||||
SupportsRound,
|
||||
|
||||
@@ -2,8 +2,9 @@ import unittest.case
|
||||
import unittest.result
|
||||
import unittest.suite
|
||||
from collections.abc import Callable, Sequence
|
||||
from re import Pattern
|
||||
from types import ModuleType
|
||||
from typing import Any, Pattern
|
||||
from typing import Any
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
_SortComparisonMethod: TypeAlias = Callable[[str, str], int]
|
||||
|
||||
Reference in New Issue
Block a user