index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_re.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-110590: Fix a bug where _sre.compile would overwrite exceptions (#110591)
Nikita Sobolev
2023-10-10
1
-0/+3
*
gh-56166: Deprecate passing confusing positional arguments in re functions (#...
Serhiy Storchaka
2023-08-16
1
-5/+66
*
gh-100061: Proper fix of the bug in the matching of possessive quantifiers (G...
SKO
2023-08-16
1
-3/+11
*
gh-106052: Fix bug in the matching of possessive quantifiers (gh-106515)
Serhiy Storchaka
2023-08-09
1
-0/+12
*
gh-106566: Optimize (?!) in regular expressions (GH-106567)
Serhiy Storchaka
2023-08-07
1
-0/+3
*
Move implementation specific RE tests to separate class (GH-106563)
Serhiy Storchaka
2023-07-09
1
-66/+69
*
gh-106510: Fix DEBUG output for atomic group (GH-106511)
Serhiy Storchaka
2023-07-08
1
-1/+4
*
gh-106524: Fix a crash in _sre.template() (GH-106525)
Radislav Chugunov
2023-07-08
1
-0/+10
*
gh-105687: Remove deprecated objects from `re` module (#105688)
Nikita Sobolev
2023-06-14
1
-27/+3
*
gh-80480: Emit DeprecationWarning for array's 'u' type code (#95760)
Hugo van Kemenade
2023-06-11
1
-2/+3
*
gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)
Gregory P. Smith
2023-02-03
1
-2/+1
*
GH-84559: Deprecate fork being the multiprocessing default. (#100618)
Gregory P. Smith
2023-02-02
1
-1/+2
*
gh-98740: Fix validation of conditional expressions in RE (GH-98764)
Serhiy Storchaka
2022-11-03
1
-0/+5
*
gh-94675: Add a regression test for rjsmin re slowdown (GH-94685)
Miro Hrončok
2022-08-03
1
-1/+30
*
gh-91404: Revert "bpo-23689: re module, fix memory leak when a match is termi...
Gregory P. Smith
2022-06-17
1
-26/+2
*
gh-92728: Restore re.template, but deprecate it (GH-93161)
Miro Hrončok
2022-05-25
1
-3/+27
*
gh-90473: Skip tests that don't apply to Emscripten and WASI (GH-92846)
Christian Heimes
2022-05-16
1
-3/+9
*
gh-91760: More strict rules for numerical group references and group names in...
Serhiy Storchaka
2022-05-08
1
-55/+24
*
gh-91760: Deprecate group names and numbers which will be invalid in future (...
Serhiy Storchaka
2022-04-30
1
-0/+56
*
Simplify testing the warning filename (GH-91868)
Serhiy Storchaka
2022-04-24
1
-3/+3
*
RE: Add more tests for inline flag "x" and re.VERBOSE (GH-91854)
Serhiy Storchaka
2022-04-23
1
-5/+27
*
gh-91700: Validate the group number in conditional expression in RE (GH-91702)
Serhiy Storchaka
2022-04-22
1
-0/+2
*
gh-90568: Fix exception type for \N with a named sequence in RE (GH-91665)
Serhiy Storchaka
2022-04-22
1
-0/+4
*
gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...
Ma Lin
2022-04-19
1
-0/+20
*
Add more tests for group names and refs in RE (GH-91695)
Serhiy Storchaka
2022-04-19
1
-15/+41
*
gh-91575: Update case-insensitive matching in re to the latest Unicode versio...
Serhiy Storchaka
2022-04-18
1
-6/+49
*
bpo-47211: Remove function re.template() and flag re.TEMPLATE (GH-32300)
Serhiy Storchaka
2022-04-06
1
-3/+3
*
bpo-23689: re module, fix memory leak when a match is terminated by a signal ...
Ma Lin
2022-04-03
1
-2/+26
*
bpo-47152: Convert the re module into a package (GH-32177)
Serhiy Storchaka
2022-04-02
1
-5/+31
*
bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)
Ma Lin
2022-03-29
1
-0/+69
*
bpo-42885: Optimize search for regular expressions starting with "\A" or "^" ...
Serhiy Storchaka
2022-03-22
1
-0/+15
*
bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...
Serhiy Storchaka
2022-03-22
1
-5/+5
*
bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)
Serhiy Storchaka
2022-03-21
1
-58/+236
*
bpo-47066: Convert a warning about flags not at the start of the regular expr...
Serhiy Storchaka
2022-03-19
1
-56/+12
*
bpo-39394: Improve warning message in the re module (GH-31988)
Serhiy Storchaka
2022-03-19
1
-3/+6
*
bpo-40280: Skip more tests on Emscripten (GH-31947)
Christian Heimes
2022-03-17
1
-1/+3
*
bpo-43988: Use check disallow instantiation helper (GH-26392)
Erlend Egeberg Aasland
2021-05-27
1
-5/+5
*
bpo-40736: Improve the error message for re.search() TypeError (GH-23312)
Zackery Spytz
2021-05-21
1
-0/+6
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-0/+9
*
bpo-43908: Make re types immutable (GH-25697)
Erlend Egeberg Aasland
2021-04-29
1
-0/+12
*
bpo-38250: [Enum] single-bit flags are canonical (GH-24215)
Ethan Furman
2021-01-25
1
-3/+5
*
bpo-1635741: Convert _sre types to heap types and establish module state (PEP...
Erlend Egeberg Aasland
2020-11-20
1
-0/+4
*
bpo-40443: Remove unused imports in tests (GH-19805)
Victor Stinner
2020-04-29
1
-1/+1
*
bpo-36548: Improve the repr of re flags. (GH-12715)
Serhiy Storchaka
2019-05-31
1
-0/+12
*
bpo-36929: Modify io/re tests to allow for missing mod name (#13392)
Max Bernstein
2019-05-21
1
-12/+16
*
bpo-29571: Fix test_re.test_locale_flag() (GH-12099)
Victor Stinner
2019-02-28
1
-2/+1
*
bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)
animalize
2019-02-18
1
-0/+34
*
bpo-30688: Support \N{name} escapes in re patterns. (GH-5588)
Serhiy Storchaka
2018-02-09
1
-0/+36
*
bpo-32308: Replace empty matches adjacent to a previous non-empty match in re...
Serhiy Storchaka
2018-01-04
1
-14/+9
*
Fix improper use of re.escape() in tests. (#4814)
Serhiy Storchaka
2017-12-12
1
-1/+1
[next]