[regex] Update to 2026.2.19 (#15439)

This commit is contained in:
Brian Schubert
2026-02-20 00:46:33 -05:00
committed by GitHub
parent 637ece0f0d
commit 7a610ebc92
3 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
version = "2026.1.15"
version = "2026.2.19"
upstream_repository = "https://github.com/mrabarnett/mrab-regex"
+1
View File
@@ -10,6 +10,7 @@ __all__ = [
"finditer",
"fullmatch",
"match",
"prefixmatch",
"purge",
"search",
"split",
+5
View File
@@ -21,6 +21,7 @@ __all__ = [
"finditer",
"fullmatch",
"match",
"prefixmatch",
"purge",
"search",
"split",
@@ -133,6 +134,9 @@ def match(
ignore_unused: bool = False,
**kwargs: Any,
) -> Match[bytes] | None: ...
prefixmatch = match
@overload
def fullmatch(
pattern: str | Pattern[str],
@@ -434,6 +438,7 @@ class Pattern(Generic[AnyStr]):
partial: bool = False,
timeout: float | None = None,
) -> Match[bytes] | None: ...
prefixmatch = match
@overload
def fullmatch(
self: Pattern[str],