summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
Commit message (Expand)AuthorAgeFilesLines
* gh-101955: Fix SystemError in possesive quantifier with alternative and group...Serhiy Storchaka2024-11-181-0/+6
* gh-67877: Fix memory leaks in terminated RE matching (GH-126840)Serhiy Storchaka2024-11-181-0/+23
* gh-126505: Fix bugs in compiling case-insensitive character classes (GH-126557)Serhiy Storchaka2024-11-111-0/+55
* gh-124130: Increase test coverage for \b and \B in regular expressions (GH-12...Serhiy Storchaka2024-09-241-7/+113
* Fix typos (#123775)algonell2024-09-091-1/+1
* gh-122798: Make tests for warnings in the re module more strict (GH-122799)Serhiy Storchaka2024-08-071-11/+40
* gh-111259: Optimize complementary character sets in RE (GH-120742)Serhiy Storchaka2024-06-201-0/+18
* gh-120417: Add #noqa: F401 to tests (#120627)Victor Stinner2024-06-181-2/+2
* gh-120417: Remove unused imports in tests (part 4) (#120632)Victor Stinner2024-06-171-1/+0
* gh-117594: Require cpu resource to test_search_anchor_at_beginning (gh-117595)Donghee Na2024-04-071-1/+4
* gh-114911: Add CPUStopwatch test helper (GH-114912)Petr Viktorin2024-02-281-10/+9
* GH-83162: Rename re.error for better clarity. (#101677)achhina2023-12-111-22/+25
* gh-109747: Improve errors for unsupported look-behind patterns (GH-109859)Serhiy Storchaka2023-10-141-0/+23
* gh-110590: Fix a bug where _sre.compile would overwrite exceptions (#110591)Nikita Sobolev2023-10-101-0/+3
* gh-56166: Deprecate passing confusing positional arguments in re functions (#...Serhiy Storchaka2023-08-161-5/+66
* gh-100061: Proper fix of the bug in the matching of possessive quantifiers (G...SKO2023-08-161-3/+11
* gh-106052: Fix bug in the matching of possessive quantifiers (gh-106515)Serhiy Storchaka2023-08-091-0/+12
* gh-106566: Optimize (?!) in regular expressions (GH-106567)Serhiy Storchaka2023-08-071-0/+3
* Move implementation specific RE tests to separate class (GH-106563)Serhiy Storchaka2023-07-091-66/+69
* gh-106510: Fix DEBUG output for atomic group (GH-106511)Serhiy Storchaka2023-07-081-1/+4
* gh-106524: Fix a crash in _sre.template() (GH-106525)Radislav Chugunov2023-07-081-0/+10
* gh-105687: Remove deprecated objects from `re` module (#105688)Nikita Sobolev2023-06-141-27/+3
* gh-80480: Emit DeprecationWarning for array's 'u' type code (#95760)Hugo van Kemenade2023-06-111-2/+3
* gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)Gregory P. Smith2023-02-031-2/+1
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-1/+2
* gh-98740: Fix validation of conditional expressions in RE (GH-98764)Serhiy Storchaka2022-11-031-0/+5
* gh-94675: Add a regression test for rjsmin re slowdown (GH-94685)Miro Hrončok2022-08-031-1/+30
* gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is termi...Gregory P. Smith2022-06-171-26/+2
* gh-92728: Restore re.template, but deprecate it (GH-93161)Miro Hrončok2022-05-251-3/+27
* gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846)Christian Heimes2022-05-161-3/+9
* gh-91760: More strict rules for numerical group references and group names in...Serhiy Storchaka2022-05-081-55/+24
* gh-91760: Deprecate group names and numbers which will be invalid in future (...Serhiy Storchaka2022-04-301-0/+56
* Simplify testing the warning filename (GH-91868)Serhiy Storchaka2022-04-241-3/+3
* RE: Add more tests for inline flag "x" and re.VERBOSE (GH-91854)Serhiy Storchaka2022-04-231-5/+27
* gh-91700: Validate the group number in conditional expression in RE (GH-91702)Serhiy Storchaka2022-04-221-0/+2
* gh-90568: Fix exception type for \N with a named sequence in RE (GH-91665)Serhiy Storchaka2022-04-221-0/+4
* gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...Ma Lin2022-04-191-0/+20
* Add more tests for group names and refs in RE (GH-91695)Serhiy Storchaka2022-04-191-15/+41
* gh-91575: Update case-insensitive matching in re to the latest Unicode versio...Serhiy Storchaka2022-04-181-6/+49
* bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)Serhiy Storchaka2022-04-061-3/+3
* bpo-23689: re module, fix memory leak when a match is terminated by a signal ...Ma Lin2022-04-031-2/+26
* bpo-47152: Convert the re module into a package (GH-32177)Serhiy Storchaka2022-04-021-5/+31
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-291-0/+69
* bpo-42885: Optimize search for regular expressions starting with "\A" or "^" ...Serhiy Storchaka2022-03-221-0/+15
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-221-5/+5
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-211-58/+236
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-191-56/+12
* bpo-39394: Improve warning message in the re module (GH-31988)Serhiy Storchaka2022-03-191-3/+6
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-171-1/+3
* bpo-43988: Use check disallow instantiation helper (GH-26392)Erlend Egeberg Aasland2021-05-271-5/+5