Bump regex to 2022.6.2 (#8162)

Co-authored-by: AlexWaygood <alex.waygood@gmail.com>
This commit is contained in:
Shantanu
2022-06-26 08:18:01 +05:30
committed by GitHub
parent ca2f83a4cf
commit d975734b8b
2 changed files with 6 additions and 2 deletions

View File

@@ -1 +1 @@
version = "2021.11.10"
version = "2022.6.2"

View File

@@ -9,7 +9,11 @@ from ._regex_core import *
__version__: str
def compile(
pattern: AnyStr | _regex.Pattern[AnyStr], flags: int = ..., ignore_unused: bool = ..., **kwargs: Any
pattern: AnyStr | _regex.Pattern[AnyStr],
flags: int = ...,
ignore_unused: bool = ...,
cache_pattern: bool | None = ...,
**kwargs: Any,
) -> _regex.Pattern[AnyStr]: ...
@overload
def search(