cpython/Lib/re
Serhiy Storchaka 8bc76ae45f
gh-111259: Optimize complementary character sets in RE (GH-120742)
Patterns like "[\s\S]" or "\s|\S" which match any character are now compiled
to the same effective code as a dot with the DOTALL modifier ("(?s:.)").
2024-06-20 07:19:32 +00:00
..
__init__.py GH-83162: Rename re.error for better clarity. (#101677) 2023-12-11 15:45:08 -05:00
_casefix.py gh-91575: Add a script for generating data for case-insensitive matching in re (GH-91660) 2022-04-22 21:37:46 +03:00
_compiler.py gh-111259: Optimize complementary character sets in RE (GH-120742) 2024-06-20 07:19:32 +00:00
_constants.py gh-111259: Optimize complementary character sets in RE (GH-120742) 2024-06-20 07:19:32 +00:00
_parser.py gh-109747: Improve errors for unsupported look-behind patterns (GH-109859) 2023-10-14 09:13:02 +03:00