Name: | python3-google-re2 |
---|---|
Epoch: | 2 |
Version: | 1.1.20250812 |
Release: | 1.el10_0 |
Architecture: | aarch64 |
Group: | Unspecified |
Size: | 322900 |
License: | BSD-3-Clause |
RPM: | python3-google-re2-1.1.20250812-1.el10_0.aarch64.rpm |
Source RPM: | re2-20250812-1.el10_0.src.rpm |
Build Date: | Fri Aug 22 2025 |
Build Host: | build-ol10-aarch64.oracle.com |
Vendor: | Oracle America |
URL: | https://github.com/google/re2 |
Summary: | RE2 Python bindings |
Description: | A drop-in replacement for the re module. It uses RE2 under the hood, of course, so various PCRE features (e.g. backreferences, look-around assertions) are not supported. See https://github.com/google/re2/wiki/Syntax for the canonical reference, but known syntactic ”gotchas” relative to Python are: • PCRE supports \Z and \z; RE2 supports \z; Python supports \z, but calls it \Z. You must rewrite \Z to \z in pattern strings. Known differences between this module’s API and the re module’s API: • The error class does not provide any error information as attributes. • The Options class replaces the re module’s flags with RE2’s options as gettable/settable properties. Please see re2.h for their documentation. • The pattern string and the input string do not have to be the same type. Any str will be encoded to UTF-8. • The pattern string cannot be str if the options specify Latin-1 encoding. |
- Update to 2025-08-12
- Update to 2025-08-05
- Update to 20250722 - Adjust the version of python3-google-re2 to match the version on PyPI and in its metadata; bump Epoch to preserve the upgrade path
- Do not build and run benchmarks
- Add a “python” build conditional
- Add a SourceLicense field
- Build the Python extension
- Enable full Unicode properties support by linking ICU
- Upgrade to 2024-07-02 - Incorporate a few minor packaging enhancements from Rawhide
- Include HTML and text syntax references as devel package documentation