mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 02:57:14 +08:00
Import Match and Pattern from re, not typing (#8277)
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
from collections.abc import Iterable, Iterator
|
||||
from typing import NamedTuple, Pattern
|
||||
from re import Pattern
|
||||
from typing import NamedTuple
|
||||
|
||||
from . import exceptions as exceptions
|
||||
from .snippets import findall_regex as findall_regex, split_by_regex as split_by_regex
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
from collections.abc import Sequence
|
||||
from typing import Pattern
|
||||
from re import Pattern
|
||||
|
||||
def remove(path: str) -> None: ...
|
||||
def findall_regex(items: Sequence[str], regex: Pattern[str]) -> list[int]: ...
|
||||
|
||||
Reference in New Issue
Block a user