1. b02f8fc Issue #11957: Restored re tests for passing count and maxsplit as positional by Serhiy Storchaka · 8 years ago
  2. cc66a65 Backported tests for issue #28070. by Serhiy Storchaka · 8 years ago
  3. 485407c Issue #24580: Symbolic group references to open group in re patterns now are by Serhiy Storchaka · 9 years ago
  4. 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 10 years ago
  5. 632a77e Issue #22364: Improved some re error messages using regex for hints. by Serhiy Storchaka · 10 years ago
  6. a54aae0 Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` by Serhiy Storchaka · 10 years ago
  7. 4eea62f Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  8. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 10 years ago
  9. 22a309a Issue #21032: Deprecated the use of re.LOCALE flag with str patterns or by Serhiy Storchaka · 10 years ago
  10. fb02833 Issue #22838: All test_re tests now work with unittest test discovery. by Serhiy Storchaka · 10 years ago
  11. 9cba989 Issue #22838: All test_re tests now work with unittest test discovery. by Serhiy Storchaka · 10 years ago
  12. 16e802f merge 3.4 (#9179) by Benjamin Peterson · 10 years ago
  13. 6632341 backout 9fcf4008b626 (#9179) for further consideration by Benjamin Peterson · 10 years ago
  14. ab14088 Minor code clean up and improvements in the re module. by Serhiy Storchaka · 10 years ago
  15. b99c132 Fixed AttributeError when the regular expression starts from illegal escape. by Serhiy Storchaka · 10 years ago
  16. ad446d5 Issue #22578: Added attributes to the re.error class. by Serhiy Storchaka · 10 years ago
  17. 5619ab9 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  18. 0c938f6 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  19. c7f7d38 Issue #22434: Constants in sre_constants are now named constants (enum-like). by Serhiy Storchaka · 10 years ago
  20. 6276b32 Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  21. 84df7fe Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  22. 4b8f894 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  23. 7cc0a1f Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  24. 4659cc0 Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  25. 55e614a Issue #11957: Explicit parameter name when calling re.split() and re.sub() by Victor Stinner · 10 years ago
  26. 7438e4b Issue 1519638: Now unmatched groups are replaced with empty strings in re.sub() by Serhiy Storchaka · 10 years ago
  27. 9baa5b2 Issue #22437: Number of capturing groups in regular expression is no longer by Serhiy Storchaka · 10 years ago
  28. c563caf Issue #22362: Forbidden ambiguous octal escapes out of range 0-0o377 in by Serhiy Storchaka · 10 years ago
  29. cd9032d Fixed bytes literals in tests. by Serhiy Storchaka · 10 years ago
  30. 44dae8b Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re by Serhiy Storchaka · 10 years ago
  31. b1847e7 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  32. b85a976 Restored re pickling test. by Serhiy Storchaka · 10 years ago
  33. d9cf65f Use more appropriate asserts in re tests. by Serhiy Storchaka · 10 years ago
  34. a25875c Fixed re tests incorrectly ported from 2.x to 3.x. by Serhiy Storchaka · 10 years ago
  35. 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
  36. a537eb4 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
  37. ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
  38. 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 · 11 years ago
  39. 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 · 11 years ago
  40. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  41. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  42. 9eabac6 Issue #18685: Restore re performance to pre-PEP 393 levels. by Serhiy Storchaka · 11 years ago
  43. 79aa68d Issue #19387: explain and test the sre overlap table by Antoine Pitrou · 11 years ago
  44. 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  45. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  46. 36af10c Issue #17087: Improved the repr for regular expression match objects. by Serhiy Storchaka · 11 years ago
  47. 2532497 Issue #18468: The re.split, re.findall, and re.sub functions and the group() by Serhiy Storchaka · 11 years ago
  48. daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
  49. 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
  50. 98985a1 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  51. 1f35ae0 Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  52. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  53. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 11 years ago
  54. eadece2 #12749: add a test for non-BMP ranges in character classes. by Ezio Melotti · 12 years ago
  55. b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  56. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  57. a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  58. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  59. adfbb8e #13899: merge with 3.2. by Ezio Melotti · 12 years ago
  60. fe8e6e7 #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett. by Ezio Melotti · 12 years ago
  61. c1b59d4 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 12 years ago
  62. 56a2ae2 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  63. 86067c2 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  64. b33941a Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  65. 1f1888e Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  66. 9a2b267 Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  67. 43fb54c Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  68. a34412a Merge test from issue #1160. by Antoine Pitrou · 12 years ago
  69. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  70. 68600af #12759: merge with 3.2. by Ezio Melotti · 12 years ago
  71. 0941d9f #12759: sre_parse now raises a proper error when the name of the group is missing. Initial patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  72. 463badf Issue #3665: \u and \U escapes are now supported in unicode regular expressions. by Antoine Pitrou · 12 years ago
  73. 7b3c975 closes #14259 re.finditer() now takes keyword arguments: pos, endpos. by Sean Reifschneider · 13 years ago
  74. cc50ba2 #14179: merge with 3.2. by Ezio Melotti · 13 years ago
  75. df723e1 #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 13 years ago
  76. 33d21a2 merge 3.2 (#14212) by Benjamin Peterson · 13 years ago
  77. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 13 years ago
  78. 0b8123d #10713: merge with 3.2. by Ezio Melotti · 13 years ago
  79. 5a045b9 #10713: Improve documentation for \b and \B and add a few tests. Initial patch and tests by Martin Pool. by Ezio Melotti · 13 years ago
  80. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  81. 88fdeb4 #2650: re.escape() no longer escapes the "_". by Ezio Melotti · 13 years ago
  82. 213eb96 #2650: Merge with 3.1. by Ezio Melotti · 14 years ago
  83. 7b9e97b #2650: Add tests with non-ascii chars for re.escape. by Ezio Melotti · 14 years ago
  84. d2114eb #2650: Refactor the tests for re.escape. by Ezio Melotti · 14 years ago
  85. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 14 years ago
  86. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  87. 3060c45 Reapply r83877. by Antoine Pitrou · 14 years ago
  88. aba74bd Revert r83877 in order to fix compilation by Antoine Pitrou · 14 years ago
  89. 9f347ea reapply the revert made in r83875 by Senthil Kumaran · 14 years ago
  90. 3102230 Revert 83784 adding functools.lru_cache() to the re module. by Raymond Hettinger · 14 years ago
  91. 4f859ed Issue 9396. Apply functools.lru_cache in the place of the by Raymond Hettinger · 14 years ago
  92. 5a63183 The default size of the re module's compiled regular expression cache has by Gregory P. Smith · 14 years ago
  93. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 15 years ago
  94. dab886a Merged revisions 78729 via svnmerge from by Ezio Melotti · 15 years ago
  95. b92ed7c #6509: fix re.sub to work properly when the pattern, the string, and the replacement were all bytes. Patch by Antoine Pitrou. by Ezio Melotti · 15 years ago
  96. 26c966b Merged revisions 78664 via svnmerge from by Victor Stinner · 15 years ago
  97. 5abeafb Issue #3299: replace PyObject_DEL() by Py_DECREF() in _sre module to fix a by Victor Stinner · 15 years ago
  98. 68338cd Merged revisions 77708 via svnmerge from by Ezio Melotti · 15 years ago
  99. 0f77f46 Merged revisions 77706 via svnmerge from by Ezio Melotti · 15 years ago
  100. 0560e8a Merged revisions 77501 via svnmerge from by Antoine Pitrou · 15 years ago