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-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
*
bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4...
Serhiy Storchaka
2017-12-04
1
-13/+31
*
bpo-30349: Raise FutureWarning for nested sets and set operations (#1553)
Serhiy Storchaka
2017-11-16
1
-1/+46
*
bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags...
Serhiy Storchaka
2017-10-24
1
-8/+14
*
bpo-30397: Add re.Pattern and re.Match. (#1646)
Serhiy Storchaka
2017-10-04
1
-2/+2
*
bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790)
Serhiy Storchaka
2017-08-03
1
-1/+1
*
bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016)
Roy Williams
2017-06-10
1
-2/+14
*
bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595)
Serhiy Storchaka
2017-05-16
1
-3/+14
*
bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491)
Serhiy Storchaka
2017-05-14
1
-0/+27
*
bpo-30340: Enhanced regular expressions optimization. (#1542)
Serhiy Storchaka
2017-05-14
1
-14/+12
*
bpo-30298: Weaken the condition of deprecation warnings for inline modifiers....
Serhiy Storchaka
2017-05-10
1
-14/+45
*
bpo-30285: Optimize case-insensitive matching and searching (#1482)
Serhiy Storchaka
2017-05-09
1
-0/+9
*
bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...
Serhiy Storchaka
2017-05-05
1
-10/+16
*
bpo-30215: Make re.compile() locale agnostic. (#1361)
Serhiy Storchaka
2017-05-05
1
-0/+32
*
bpo-10076: Compiled regular expression and match objects now are copyable. (#...
Serhiy Storchaka
2017-04-16
1
-0/+9
*
bpo-29995: re.escape() now escapes only special characters. (#1007)
Serhiy Storchaka
2017-04-13
1
-18/+19
*
bpo-29919: Remove unused imports found by pyflakes (#137)
Victor Stinner
2017-03-27
1
-2/+2
*
Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554)
Benjamin Peterson
2017-03-08
1
-1/+1
*
Revert "make the locale_flag fallback code work again (#375)" (#387)
Benjamin Peterson
2017-03-02
1
-2/+3
*
make the locale_flag fallback code work again (#375)
Benjamin Peterson
2017-03-01
1
-3/+2
*
bpo-29571: Use correct locale encoding in test_re (#149)
Nick Coghlan
2017-02-18
1
-1/+1
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-0/+10
|
\
|
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-0/+10
|
|
\
|
|
*
Issue #29444: Fixed out-of-bounds buffer access in the group() method of
Serhiy Storchaka
2017-02-04
1
-0/+10
|
*
|
Issue #27030: Unknown escapes in re.sub() replacement template are allowed
Serhiy Storchaka
2016-12-06
1
-1/+1
*
|
|
Remove unused imports.
Serhiy Storchaka
2016-12-16
1
-3/+0
[next]