1. 33d21a2 merge 3.2 (#14212) by Benjamin Peterson · 12 years ago
  2. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 12 years ago
  3. 0b8123d #10713: merge with 3.2. by Ezio Melotti · 12 years ago
  4. 5a045b9 #10713: Improve documentation for \b and \B and add a few tests. Initial patch and tests by Martin Pool. by Ezio Melotti · 12 years ago
  5. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  6. 88fdeb4 #2650: re.escape() no longer escapes the "_". by Ezio Melotti · 13 years ago
  7. 213eb96 #2650: Merge with 3.1. by Ezio Melotti · 13 years ago
  8. 7b9e97b #2650: Add tests with non-ascii chars for re.escape. by Ezio Melotti · 13 years ago
  9. d2114eb #2650: Refactor the tests for re.escape. by Ezio Melotti · 13 years ago
  10. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  11. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  12. 3060c45 Reapply r83877. by Antoine Pitrou · 14 years ago
  13. aba74bd Revert r83877 in order to fix compilation by Antoine Pitrou · 14 years ago
  14. 9f347ea reapply the revert made in r83875 by Senthil Kumaran · 14 years ago
  15. 3102230 Revert 83784 adding functools.lru_cache() to the re module. by Raymond Hettinger · 14 years ago
  16. 4f859ed Issue 9396. Apply functools.lru_cache in the place of the by Raymond Hettinger · 14 years ago
  17. 5a63183 The default size of the re module's compiled regular expression cache has by Gregory P. Smith · 14 years ago
  18. 1b37e87 Merged revisions 78093 via svnmerge from by Georg Brandl · 14 years ago
  19. dab886a Merged revisions 78729 via svnmerge from by Ezio Melotti · 14 years ago
  20. 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
  21. 26c966b Merged revisions 78664 via svnmerge from by Victor Stinner · 14 years ago
  22. 5abeafb Issue #3299: replace PyObject_DEL() by Py_DECREF() in _sre module to fix a by Victor Stinner · 14 years ago
  23. 68338cd Merged revisions 77708 via svnmerge from by Ezio Melotti · 14 years ago
  24. 0f77f46 Merged revisions 77706 via svnmerge from by Ezio Melotti · 14 years ago
  25. 0560e8a Merged revisions 77501 via svnmerge from by Antoine Pitrou · 15 years ago
  26. 82feb1f Merged revisions 77499 via svnmerge from by Antoine Pitrou · 15 years ago
  27. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  28. 1f26828 Issue #6561: '\d' in a regular expression should match only Unicode by Mark Dickinson · 15 years ago
  29. d98ef1a Merged revisions 74118 via svnmerge from by R. David Murray · 15 years ago
  30. d33396c Remove apparently unneeded and un-cleaned-up munging of sys.path from by R. David Murray · 15 years ago
  31. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  32. 698280d Issue #3756: make re.escape() handle bytes as well as str. by Guido van Rossum · 16 years ago
  33. 92f8f3e Merged revisions 66364 via svnmerge from by Guido van Rossum · 16 years ago
  34. 1cd0247 Merged revisions 66321 via svnmerge from by Brett Cannon · 16 years ago
  35. a786b02 Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from by Benjamin Peterson · 16 years ago
  36. fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
  37. 22628c4 #3231: re.compile fails with some bytes patterns by Antoine Pitrou · 16 years ago
  38. e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
  39. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  40. cf3520c Remove the sre module. by Brett Cannon · 16 years ago
  41. 40a088d Fix 're' to work on bytes. It could do with a few more tests, though. by Thomas Wouters · 16 years ago
  42. 25bb783 Merged revisions 59883-59920 via svnmerge from by Christian Heimes · 17 years ago
  43. 2e1d0f0 Fixed unichr() -> chr() by Christian Heimes · 17 years ago
  44. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  45. 5fb7c2a Merged revisions 59565-59594 via svnmerge from by Christian Heimes · 17 years ago
  46. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  47. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  48. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  49. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  50. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  51. 166746c There is no longer a 'c' array typecode. by Guido van Rossum · 17 years ago
  52. 7ebb970 Make test_re pass. by Guido van Rossum · 17 years ago
  53. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  54. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  55. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  56. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  57. b940e11 SF patch 1631942 by Collin Winter: by Guido van Rossum · 18 years ago
  58. bf12cdb Quite a few fixes to make the library and test suite more robust when by Guido van Rossum · 18 years ago
  59. 9ada3d6 Merge trunk up to 43069, putting re.py back and hopefully making the branch by Thomas Wouters · 18 years ago
  60. 6fa0c5a Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than by Gustavo Niemeyer · 19 years ago
  61. e7fa1af M-x untabify by Michael W. Hudson · 19 years ago
  62. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 19 years ago
  63. 0e9980f Whitespace normalization. by Tim Peters · 20 years ago
  64. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 20 years ago
  65. a01a2ee Applying modified version of patch #1018386, which fixes by Gustavo Niemeyer · 20 years ago
  66. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  67. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  68. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  69. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  70. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  71. 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
  72. 6802c6e fixed typo in comment by Just van Rossum · 21 years ago
  73. 25fe0bf Many new tests, based on gcov's coverage information. by Gustavo Niemeyer · 21 years ago
  74. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  75. 3646ab9 Fix for part of the problem mentioned in #725149 by Greg Chapman. by Gustavo Niemeyer · 21 years ago
  76. c34f255 Applied patch #725106, by Greg Chapman, fixing capturing groups by Gustavo Niemeyer · 21 years ago
  77. 5ba0054 final bit of tests converted from test_sre by Skip Montanaro · 21 years ago
  78. 1e703c6 more tests converted from test_sre by Skip Montanaro · 21 years ago
  79. 2726fcd more tests from test_sre by Skip Montanaro · 21 years ago
  80. 7d9963f copy a few tests from test_sre by Skip Montanaro · 21 years ago
  81. 46144be Fix test_limitations(). The match there is *expected* to raise RuntimeError. by Guido van Rossum · 21 years ago
  82. 8ed06da first cut at unittest version of re tests by Skip Montanaro · 21 years ago
  83. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  84. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  85. e056e4d Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke. by Guido van Rossum · 23 years ago
  86. 17741be SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode strings/patterns. by Fredrik Lundh · 23 years ago
  87. 2846b0a String method conversion. by Eric S. Raymond · 23 years ago
  88. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  89. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  90. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  91. 8ae9ce5 Better conformance to the Python Style Guide: use spaces around operators. by Fred Drake · 24 years ago
  92. 8e6d571 -- enabled some temporarily disabled RE tests by Fredrik Lundh · 24 years ago
  93. 1151a8c -- whitespace cleanup (more tests to be added in the next commit) by Fredrik Lundh · 24 years ago
  94. e6f1646 Comment out repeated-group test for the moment by Andrew M. Kuchling · 24 years ago
  95. a3eacc4 Add nasty test case that overflows the stack with a repeated group by Andrew M. Kuchling · 24 years ago
  96. 2850d18 Switch to sre for regular expression matching (the new mini-re module by Guido van Rossum · 24 years ago
  97. c364cf8 Added tests for findall(). by Guido van Rossum · 26 years ago
  98. 1cd4d52 Remove RCS and #! cruft at top. by Guido van Rossum · 26 years ago
  99. 8430c58 AMK's latest by Guido van Rossum · 26 years ago
  100. 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago