requirements: Add google-re2, a drop-in replacement for re using re2.

re2[1] compiles (strictly) regular expressions to deterministic finite
automata, which guarantees linear-time behavior; `google-re2` is a
drop-in replacement for the `re` module which uses re2 under the hood.

[1]: https://github.com/google/re2/
This commit is contained in:
Alex Vandiver
2021-09-15 00:01:23 +00:00
parent 313bcfd02a
commit d3091a6096
4 changed files with 18 additions and 1 deletions

View File

@@ -47,4 +47,4 @@ API_FEATURE_LEVEL = 65
# historical commits sharing the same major version, in which case a
# minor version bump suffices.
PROVISION_VERSION = "146.0"
PROVISION_VERSION = "146.1"