summaryrefslogtreecommitdiff
path: root/Lib/test/test_re.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-36929: Modify io/re tests to allow for missing mod name (GH-13392)Miss Islington (bot)2019-05-211-12/+16
* [3.7] bpo-29571: Fix test_re.test_locale_flag() (GH-12178)Victor Stinner2019-03-051-2/+12
* bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546)Miss Islington (bot)2019-02-181-0/+34
* 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
* bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016)Roy Williams2017-06-101-2/+14
* bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595)Serhiy Storchaka2017-05-161-3/+14
* bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491)Serhiy Storchaka2017-05-141-0/+27
* bpo-30340: Enhanced regular expressions optimization. (#1542)Serhiy Storchaka2017-05-141-14/+12
* bpo-30298: Weaken the condition of deprecation warnings for inline modifiers....Serhiy Storchaka2017-05-101-14/+45
* bpo-30285: Optimize case-insensitive matching and searching (#1482)Serhiy Storchaka2017-05-091-0/+9
* bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode...Serhiy Storchaka2017-05-051-10/+16
* bpo-30215: Make re.compile() locale agnostic. (#1361)Serhiy Storchaka2017-05-051-0/+32
* bpo-10076: Compiled regular expression and match objects now are copyable. (#...Serhiy Storchaka2017-04-161-0/+9
* bpo-29995: re.escape() now escapes only special characters. (#1007)Serhiy Storchaka2017-04-131-18/+19
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-2/+2
* Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554)Benjamin Peterson2017-03-071-1/+1
* Revert "make the locale_flag fallback code work again (#375)" (#387)Benjamin Peterson2017-03-011-2/+3
* make the locale_flag fallback code work again (#375)Benjamin Peterson2017-02-281-3/+2
* bpo-29571: Use correct locale encoding in test_re (#149)Nick Coghlan2017-02-181-1/+1
* Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
|\
| * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
| |\
| | * Issue #29444: Fixed out-of-bounds buffer access in the group() method ofSerhiy Storchaka2017-02-041-0/+10
| * | Issue #27030: Unknown escapes in re.sub() replacement template are allowedSerhiy Storchaka2016-12-061-1/+1
* | | Remove unused imports.Serhiy Storchaka2016-12-161-3/+0
* | | Issue #28765: _sre.compile() now checks the type of groupindex and indexgroupVictor Stinner2016-11-221-1/+1
|/ /
* | Issue #28727: Optimize pattern_richcompare() for a==aVictor Stinner2016-11-221-0/+4
* | Implement rich comparison for _sre.SRE_PatternVictor Stinner2016-11-211-2/+45
* | Issue #28082: Add basic unit tests on re enumsVictor Stinner2016-11-141-0/+6
* | Issue #25953: re.sub() now raises an error for invalid numerical groupSerhiy Storchaka2016-10-231-21/+22
* | Issue #11957: Restored re tests for passing count and maxsplit as positionalSerhiy Storchaka2016-09-251-0/+5
|\ \ | |/
| * Issue #11957: Restored re tests for passing count and maxsplit as positionalSerhiy Storchaka2016-09-251-0/+5
| * Backported tests for issue #28070.Serhiy Storchaka2016-09-111-0/+3
* | Issue #22493: Warning message emitted by using inline flags in the middle ofSerhiy Storchaka2016-09-171-2/+15
* | Issue 24454: Improve the usability of the re match object named group APIEric V. Smith2016-09-111-0/+44
* | Issue #22493: Inline flags now should be used only at the start of theSerhiy Storchaka2016-09-111-0/+3
* | Issue #28070: Fixed parsing inline verbose flag in regular expressions.Serhiy Storchaka2016-09-111-0/+3
* | Issue #433028: Added support of modifier spans in regular expressions.Serhiy Storchaka2016-09-101-4/+36
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-100/+100
* | Issue #27177: Match objects in the re module now support index-like objectsSerhiy Storchaka2016-06-181-7/+21
* | Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter inSerhiy Storchaka2016-06-111-28/+13
|/
* Issue #24580: Symbolic group references to open group in re patterns now areSerhiy Storchaka2015-07-181-0/+2
* Issue #14260: The groupindex attribute of regular expression pattern objectSerhiy Storchaka2015-03-301-0/+8
* Issue #22364: Improved some re error messages using regex for hints.Serhiy Storchaka2015-03-251-74/+179
* Issue #23622: Unknown escapes in regular expressions that consist of ``'\'``Serhiy Storchaka2015-03-241-13/+30