1. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  2. 98985a1 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  3. 1f35ae0 Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  4. 26dfaac9 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  5. 1d472b7 Closes #14462: allow any valid Python identifier in sre group names, as documented. by Georg Brandl · 11 years ago
  6. eadece2 #12749: add a test for non-BMP ranges in character classes. by Ezio Melotti · 12 years ago
  7. b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  8. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  9. a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  10. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  11. adfbb8e #13899: merge with 3.2. by Ezio Melotti · 12 years ago
  12. 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
  13. c1b59d4 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 12 years ago
  14. 56a2ae2 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  15. 86067c2 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  16. b33941a Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  17. 1f1888e Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  18. 9a2b267 Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  19. 43fb54c Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  20. a34412a Merge test from issue #1160. by Antoine Pitrou · 12 years ago
  21. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  22. 68600af #12759: merge with 3.2. by Ezio Melotti · 12 years ago
  23. 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
  24. 463badf Issue #3665: \u and \U escapes are now supported in unicode regular expressions. by Antoine Pitrou · 12 years ago
  25. 7b3c975 closes #14259 re.finditer() now takes keyword arguments: pos, endpos. by Sean Reifschneider · 12 years ago
  26. cc50ba2 #14179: merge with 3.2. by Ezio Melotti · 12 years ago
  27. df723e1 #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 12 years ago
  28. 33d21a2 merge 3.2 (#14212) by Benjamin Peterson · 12 years ago
  29. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 12 years ago
  30. 0b8123d #10713: merge with 3.2. by Ezio Melotti · 13 years ago
  31. 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
  32. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  33. 88fdeb4 #2650: re.escape() no longer escapes the "_". by Ezio Melotti · 13 years ago
  34. 213eb96 #2650: Merge with 3.1. by Ezio Melotti · 13 years ago
  35. 7b9e97b #2650: Add tests with non-ascii chars for re.escape. by Ezio Melotti · 13 years ago
  36. d2114eb #2650: Refactor the tests for re.escape. by Ezio Melotti · 13 years ago
  37. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  38. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  39. 3060c45 Reapply r83877. by Antoine Pitrou · 14 years ago
  40. aba74bd Revert r83877 in order to fix compilation by Antoine Pitrou · 14 years ago
  41. 9f347ea reapply the revert made in r83875 by Senthil Kumaran · 14 years ago
  42. 3102230 Revert 83784 adding functools.lru_cache() to the re module. by Raymond Hettinger · 14 years ago
  43. 4f859ed Issue 9396. Apply functools.lru_cache in the place of the by Raymond Hettinger · 14 years ago
  44. 5a63183 The default size of the re module's compiled regular expression cache has by Gregory P. Smith · 14 years ago
  45. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  46. dab886a Merged revisions 78729 via svnmerge from by Ezio Melotti · 14 years ago
  47. 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 · 14 years ago
  48. 26c966b Merged revisions 78664 via svnmerge from by Victor Stinner · 14 years ago
  49. 5abeafb Issue #3299: replace PyObject_DEL() by Py_DECREF() in _sre module to fix a by Victor Stinner · 14 years ago
  50. 68338cd Merged revisions 77708 via svnmerge from by Ezio Melotti · 15 years ago
  51. 0f77f46 Merged revisions 77706 via svnmerge from by Ezio Melotti · 15 years ago
  52. 0560e8a Merged revisions 77501 via svnmerge from by Antoine Pitrou · 15 years ago
  53. 82feb1f Merged revisions 77499 via svnmerge from by Antoine Pitrou · 15 years ago
  54. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  55. 1f26828 Issue #6561: '\d' in a regular expression should match only Unicode by Mark Dickinson · 15 years ago
  56. d98ef1a Merged revisions 74118 via svnmerge from by R. David Murray · 15 years ago
  57. d33396c Remove apparently unneeded and un-cleaned-up munging of sys.path from by R. David Murray · 15 years ago
  58. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  59. 698280d Issue #3756: make re.escape() handle bytes as well as str. by Guido van Rossum · 16 years ago
  60. 92f8f3e Merged revisions 66364 via svnmerge from by Guido van Rossum · 16 years ago
  61. 1cd0247 Merged revisions 66321 via svnmerge from by Brett Cannon · 16 years ago
  62. a786b02 Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from by Benjamin Peterson · 16 years ago
  63. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  64. 22628c4 #3231: re.compile fails with some bytes patterns by Antoine Pitrou · 16 years ago
  65. e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
  66. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  67. cf3520c Remove the sre module. by Brett Cannon · 16 years ago
  68. 40a088d Fix 're' to work on bytes. It could do with a few more tests, though. by Thomas Wouters · 16 years ago
  69. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  70. 2e1d0f0 Fixed unichr() -> chr() by Christian Heimes · 17 years ago
  71. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  72. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  73. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  74. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  75. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  76. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  77. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  78. 166746c There is no longer a 'c' array typecode. by Guido van Rossum · 17 years ago
  79. 7ebb970 Make test_re pass. by Guido van Rossum · 17 years ago
  80. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  81. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  82. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  83. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
  84. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  85. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  86. 9ada3d6 Merge trunk up to 43069, putting re.py back and hopefully making the branch by Thomas Wouters · 18 years ago
  87. 6fa0c5a Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than by Gustavo Niemeyer · 19 years ago
  88. e7fa1af M-x untabify by Michael W. Hudson · 19 years ago
  89. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 19 years ago
  90. 0e9980f Whitespace normalization. by Tim Peters · 20 years ago
  91. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 20 years ago
  92. a01a2ee Applying modified version of patch #1018386, which fixes by Gustavo Niemeyer · 20 years ago
  93. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  94. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  95. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  96. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  97. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  98. 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
  99. 6802c6e fixed typo in comment by Just van Rossum · 21 years ago
  100. 25fe0bf Many new tests, based on gcov's coverage information. by Gustavo Niemeyer · 21 years ago