summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_re.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-100061: Proper fix of the bug in the matching of possessive quantif...Serhiy Storchaka2023-08-161-2/+10
* [3.12] gh-106052: Fix bug in the matching of possessive quantifiers (GH-10651...Serhiy Storchaka2023-08-091-0/+12
* [3.12] Move implementation specific RE tests to separate class (GH-106563) (#...Miss Islington (bot)2023-07-091-66/+69
* [3.12] gh-106510: Fix DEBUG output for atomic group (GH-106511) (GH-106548)Miss Islington (bot)2023-07-081-1/+4
* [3.12] gh-106524: Fix a crash in _sre.template() (GH-106525) (GH-106544)Miss Islington (bot)2023-07-081-0/+10
* 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
* bpo-40736: Improve the error message for re.search() TypeError (GH-23312)Zackery Spytz2021-05-211-0/+6
* bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)Erlend Egeberg Aasland2021-04-301-0/+9
* bpo-43908: Make re types immutable (GH-25697)Erlend Egeberg Aasland2021-04-291-0/+12
* bpo-38250: [Enum] single-bit flags are canonical (GH-24215)Ethan Furman2021-01-251-3/+5
* bpo-1635741: Convert _sre types to heap types and establish module state (PEP...Erlend Egeberg Aasland2020-11-201-0/+4
* bpo-40443: Remove unused imports in tests (GH-19805)Victor Stinner2020-04-291-1/+1
* bpo-36548: Improve the repr of re flags. (GH-12715)Serhiy Storchaka2019-05-311-0/+12
* bpo-36929: Modify io/re tests to allow for missing mod name (#13392)Max Bernstein2019-05-211-12/+16
* bpo-29571: Fix test_re.test_locale_flag() (GH-12099)Victor Stinner2019-02-281-2/+1
* bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)animalize2019-02-181-0/+34
* bpo-30688: Support \N{name} escapes in re patterns. (GH-5588)Serhiy Storchaka2018-02-091-0/+36
* bpo-32308: Replace empty matches adjacent to a previous non-empty match in re...Serhiy Storchaka2018-01-041-14/+9
* Fix improper use of re.escape() in tests. (#4814)Serhiy Storchaka2017-12-121-1/+1
* bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4...Serhiy Storchaka2017-12-041-13/+31
* bpo-30349: Raise FutureWarning for nested sets and set operations (#1553)Serhiy Storchaka2017-11-161-1/+46
* bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...Serhiy Storchaka2017-10-241-8/+14
* bpo-30397: Add re.Pattern and re.Match. (#1646)Serhiy Storchaka2017-10-041-2/+2
* bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)Serhiy Storchaka2017-08-031-1/+1