1. ab71f8b bpo-29571: Fix test_re.test_locale_flag() (GH-12099) by Victor Stinner · 5 years ago
  2. 4a7f44a bpo-34294: re module, fix wrong capturing groups in rare cases. (GH-11546) by animalize · 5 years ago
  3. a445feb bpo-30688: Support \N{name} escapes in re patterns. (GH-5588) by Serhiy Storchaka · 6 years ago
  4. fbb490f bpo-32308: Replace empty matches adjacent to a previous non-empty match in re.sub(). (#4846) by Serhiy Storchaka · 7 years ago
  5. b748e3b Fix improper use of re.escape() in tests. (#4814) by Serhiy Storchaka · 7 years ago
  6. 70d56fb bpo-25054, bpo-1647489: Added support of splitting on zerowidth patterns. (#4471) by Serhiy Storchaka · 7 years ago
  7. 05cb728 bpo-30349: Raise FutureWarning for nested sets and set operations (#1553) by Serhiy Storchaka · 7 years ago
  8. 3557b05 bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags for RE. (#3885) by Serhiy Storchaka · 7 years ago
  9. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
  10. 5075416 bpo-30978: str.format_map() now passes key lookup exceptions through. (#2790) by Serhiy Storchaka · 7 years ago
  11. 171b9a3 bpo-30605: Fix compiling binary regexs with BytesWarnings enabled. (#2016) by Roy Williams · 7 years ago
  12. c7ac728 bpo-30375: Correct the stacklevel of regex compiling warnings. (#1595) by Serhiy Storchaka · 7 years ago
  13. 4ab6abf bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491) by Serhiy Storchaka · 7 years ago
  14. 821a9d1 bpo-30340: Enhanced regular expressions optimization. (#1542) by Serhiy Storchaka · 7 years ago
  15. 305ccbe bpo-30298: Weaken the condition of deprecation warnings for inline modifiers. (#1490) by Serhiy Storchaka · 7 years ago
  16. 6d336a0 bpo-30285: Optimize case-insensitive matching and searching (#1482) by Serhiy Storchaka · 7 years ago
  17. 7186cc2 bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode_tolower(). (#1468) by Serhiy Storchaka · 7 years ago
  18. 898ff03 bpo-30215: Make re.compile() locale agnostic. (#1361) by Serhiy Storchaka · 7 years ago
  19. fdbd011 bpo-10076: Compiled regular expression and match objects now are copyable. (#1000) by Serhiy Storchaka · 7 years ago
  20. 5908300 bpo-29995: re.escape() now escapes only special characters. (#1007) by Serhiy Storchaka · 7 years ago
  21. d6debb2 bpo-29919: Remove unused imports found by pyflakes (#137) by Victor Stinner · 7 years ago
  22. 21a7431 Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) by Benjamin Peterson · 7 years ago
  23. 1e68716 Revert "make the locale_flag fallback code work again (#375)" (#387) by Benjamin Peterson · 7 years ago
  24. 43f5df5 make the locale_flag fallback code work again (#375) by Benjamin Peterson · 7 years ago
  25. ace5c0f bpo-29571: Use correct locale encoding in test_re (#149) by Nick Coghlan · 7 years ago
  26. ef51767 Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 7 years ago
  27. 86e4237 Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 7 years ago
  28. 7e10dbb Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 7 years ago
  29. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  30. 726a57d Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup by Victor Stinner · 8 years ago
  31. 53c53ea Issue #27030: Unknown escapes in re.sub() replacement template are allowed by Serhiy Storchaka · 8 years ago
  32. bcf4dcc Issue #28727: Optimize pattern_richcompare() for a==a by Victor Stinner · 8 years ago
  33. b44fb12 Implement rich comparison for _sre.SRE_Pattern by Victor Stinner · 8 years ago
  34. 8bf43e6 Issue #28082: Add basic unit tests on re enums by Victor Stinner · 8 years ago
  35. 662cef6 Issue #25953: re.sub() now raises an error for invalid numerical group by Serhiy Storchaka · 8 years ago
  36. 0eb60a7 Issue #11957: Restored re tests for passing count and maxsplit as positional by Serhiy Storchaka · 8 years ago
  37. b02f8fc Issue #11957: Restored re tests for passing count and maxsplit as positional by Serhiy Storchaka · 8 years ago
  38. abf275a Issue #22493: Warning message emitted by using inline flags in the middle of by Serhiy Storchaka · 8 years ago
  39. 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
  40. bd48d27 Issue #22493: Inline flags now should be used only at the start of the by Serhiy Storchaka · 8 years ago
  41. cc66a65 Backported tests for issue #28070. by Serhiy Storchaka · 8 years ago
  42. d65cd09 Issue #28070: Fixed parsing inline verbose flag in regular expressions. by Serhiy Storchaka · 8 years ago
  43. be9a4e5 Issue #433028: Added support of modifier spans in regular expressions. by Serhiy Storchaka · 8 years ago
  44. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  45. 977b3ac Issue #27177: Match objects in the re module now support index-like objects by Serhiy Storchaka · 8 years ago
  46. 9bd85b8 Issue #27030: Unknown escapes consisting of ``'\'`` and ASCII letter in by Serhiy Storchaka · 8 years ago
  47. 485407c Issue #24580: Symbolic group references to open group in re patterns now are by Serhiy Storchaka · 9 years ago
  48. 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 9 years ago
  49. 632a77e Issue #22364: Improved some re error messages using regex for hints. by Serhiy Storchaka · 9 years ago
  50. a54aae0 Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` by Serhiy Storchaka · 9 years ago
  51. 4eea62f Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 9 years ago
  52. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 9 years ago
  53. 22a309a Issue #21032: Deprecated the use of re.LOCALE flag with str patterns or by Serhiy Storchaka · 10 years ago
  54. fb02833 Issue #22838: All test_re tests now work with unittest test discovery. by Serhiy Storchaka · 10 years ago
  55. 9cba989 Issue #22838: All test_re tests now work with unittest test discovery. by Serhiy Storchaka · 10 years ago
  56. 16e802f merge 3.4 (#9179) by Benjamin Peterson · 10 years ago
  57. 6632341 backout 9fcf4008b626 (#9179) for further consideration by Benjamin Peterson · 10 years ago
  58. ab14088 Minor code clean up and improvements in the re module. by Serhiy Storchaka · 10 years ago
  59. b99c132 Fixed AttributeError when the regular expression starts from illegal escape. by Serhiy Storchaka · 10 years ago
  60. ad446d5 Issue #22578: Added attributes to the re.error class. by Serhiy Storchaka · 10 years ago
  61. 5619ab9 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  62. 0c938f6 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  63. c7f7d38 Issue #22434: Constants in sre_constants are now named constants (enum-like). by Serhiy Storchaka · 10 years ago
  64. 6276b32 Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  65. 84df7fe Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  66. 4b8f894 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  67. 7cc0a1f Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  68. 4659cc0 Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  69. 55e614a Issue #11957: Explicit parameter name when calling re.split() and re.sub() by Victor Stinner · 10 years ago
  70. 7438e4b Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub() by Serhiy Storchaka · 10 years ago
  71. 9baa5b2 Issue #22437: Number of capturing groups in regular expression is no longer by Serhiy Storchaka · 10 years ago
  72. c563caf Issue #22362: Forbidden ambiguous octal escapes out of range 0-0o377 in by Serhiy Storchaka · 10 years ago
  73. cd9032d Fixed bytes literals in tests. by Serhiy Storchaka · 10 years ago
  74. 44dae8b Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re by Serhiy Storchaka · 10 years ago
  75. b1847e7 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  76. b85a976 Restored re pickling test. by Serhiy Storchaka · 10 years ago
  77. d9cf65f Use more appropriate asserts in re tests. by Serhiy Storchaka · 10 years ago
  78. a25875c Fixed re tests incorrectly ported from 2.x to 3.x. by Serhiy Storchaka · 10 years ago
  79. 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
  80. a537eb4 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago
  81. ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago
  82. c49672f Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug output every time it is called, regardless of the compilation cache. by Antoine Pitrou · 10 years ago
  83. d2cc743 Issue #20426: When passing the re.DEBUG flag, re.compile() displays the debug output every time it is called, regardless of the compilation cache. by Antoine Pitrou · 10 years ago
  84. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  85. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  86. 9eabac6 Issue #18685: Restore re performance to pre-PEP 393 levels. by Serhiy Storchaka · 11 years ago
  87. 79aa68d Issue #19387: explain and test the sre overlap table by Antoine Pitrou · 11 years ago
  88. 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  89. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  90. 36af10c Issue #17087: Improved the repr for regular expression match objects. by Serhiy Storchaka · 11 years ago
  91. 2532497 Issue #18468: The re.split, re.findall, and re.sub functions and the group() by Serhiy Storchaka · 11 years ago
  92. daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
  93. 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
  94. 98985a1 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  95. 1f35ae0 Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  96. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  97. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 11 years ago
  98. eadece2 #12749: add a test for non-BMP ranges in character classes. by Ezio Melotti · 11 years ago
  99. b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  100. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago