1. 955b676 [2.7] bpo-30363: Backport warnings in the re module. (#1577) by Serhiy Storchaka · 7 years ago
  2. 0b5f22d Backported tests for issue #28070. by Serhiy Storchaka · 8 years ago
  3. 4809d1f Issues #814253, #9179: Warnings now are raised when group references and by Serhiy Storchaka · 10 years ago
  4. f8c8d2e backout fac649bf2d10 (#9179) for further consideration by Benjamin Peterson · 10 years ago
  5. e927757 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  6. 15ea870 Issues #814253, #9179: Group references and conditional group references now by Serhiy Storchaka · 10 years ago
  7. e9e54ae Issue #17381: Fixed ranges handling in case-insensitive regular expressions. by Serhiy Storchaka · 10 years ago
  8. d4c7290 Issue #22410: Module level functions in the re module now cache compiled by Serhiy Storchaka · 10 years ago
  9. bc4ece5 allow longs as indexes to group() (closes #22530) by Benjamin Peterson · 10 years ago
  10. c0799e3 Issue #22423: Fixed debugging output of the GROUPREF_EXISTS opcode in the re by Serhiy Storchaka · 10 years ago
  11. 038fac6 Test re pickling for all protocols. by Serhiy Storchaka · 10 years ago
  12. 7644ff1 Now re tests work again on Unicode-disabled build. by Serhiy Storchaka · 10 years ago
  13. ed5ea15 Use more appropriate asserts in re tests. by Serhiy Storchaka · 10 years ago
  14. e50fe4c Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
  15. f581411 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
  16. 1f70221 Issue #19572: More silently skipped tests explicitly skipped. by Zachary Ware · 11 years ago
  17. 22fb0de Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  18. 83737c6 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  19. 3ade66c Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  20. 6077339 #17341: Include name in re error message about invalid group name. by R David Murray · 11 years ago
  21. 6a8e2b4 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  22. e18e05c Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  23. 5c4e32b #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
  24. 74635c9 Fix test splitting in previous commit. by Antoine Pitrou · 12 years ago
  25. 735f36e Split the bigmem re test in two separate tests with different memory requirements. by Antoine Pitrou · 12 years ago
  26. b83575b Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  27. b83ea14 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  28. ef31738 #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
  29. b56b6ff #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 13 years ago
  30. 38ae5b2 #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
  31. 4664563 #2650: Refactor re.escape and its tests. by Ezio Melotti · 14 years ago
  32. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  33. 6257a7b Replace catch_warnings with check_warnings when it makes sense. Use assertRaises context manager to simplify some tests. by Florent Xicluna · 15 years ago
  34. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 15 years ago
  35. 0e4e732 Increased the overflow value on test_dealloc to make sure that it is big enough even for wide builds. by Ezio Melotti · 15 years ago
  36. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 15 years ago
  37. 96e319e don't need to mess up sys.path by Benjamin Peterson · 15 years ago
  38. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 15 years ago
  39. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 15 years ago
  40. e3c4fd9 - Issue #3629: Fix sre "bytecode" validator for an end case. by Guido van Rossum · 16 years ago
  41. 672237d warnings.catch_warnings() now returns a list or None instead of the custom by Brett Cannon · 16 years ago
  42. 30de77b #3654: fix duplicate test method name. Review by Benjamin P. by Georg Brandl · 16 years ago
  43. d08a8eb Closing issue1761. by Amaury Forgeot d'Arc · 17 years ago
  44. ae04c33 Issue #1700, reported by Nguyen Quan Son, fix by Fredruk Lundh: by Guido van Rossum · 17 years ago
  45. 80016c9 Fix issue 1661: Flags argument silently ignored in re functions with compiled regexes. by Raymond Hettinger · 17 years ago
  46. 1ff91d9 Patch # 1140 (my code, approved by Effbot). by Guido van Rossum · 17 years ago
  47. 2ee4128 Remove test.test_support.guard_warnings_filter. by Brett Cannon · 17 years ago
  48. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 17 years ago
  49. 01a807d Array module's buffer interface can now handle empty arrays. by Raymond Hettinger · 18 years ago
  50. 7492e42 Bug #1675967: re patterns pickled with older Python versions can by Žiga Seilnacht · 18 years ago
  51. 94a9c09 Rename sre.py -> re.py by Neal Norwitz · 19 years ago
  52. 6fa0c5a Bug #1202493: Fixing SRE parser to handle '{}' as perl does, rather than by Gustavo Niemeyer · 19 years ago
  53. e7fa1af M-x untabify by Michael W. Hudson · 19 years ago
  54. 3554cad [Bug #1177831] Exercise (?(id)yes|no) for a group other than the first one by Andrew M. Kuchling · 19 years ago
  55. 0e9980f Whitespace normalization. by Tim Peters · 20 years ago
  56. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 20 years ago
  57. a01a2ee Applying modified version of patch #1018386, which fixes by Gustavo Niemeyer · 20 years ago
  58. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 20 years ago
  59. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  60. 9f62ecc SF #926075: Fixed the bug that returns a wrong pattern object for by Hye-Shik Chang · 20 years ago
  61. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  62. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  63. 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
  64. 6802c6e fixed typo in comment by Just van Rossum · 21 years ago
  65. 25fe0bf Many new tests, based on gcov's coverage information. by Gustavo Niemeyer · 21 years ago
  66. 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 21 years ago
  67. 3646ab9 Fix for part of the problem mentioned in #725149 by Greg Chapman. by Gustavo Niemeyer · 21 years ago
  68. c34f255 Applied patch #725106, by Greg Chapman, fixing capturing groups by Gustavo Niemeyer · 21 years ago
  69. 5ba0054 final bit of tests converted from test_sre by Skip Montanaro · 21 years ago
  70. 1e703c6 more tests converted from test_sre by Skip Montanaro · 21 years ago
  71. 2726fcd more tests from test_sre by Skip Montanaro · 21 years ago
  72. 7d9963f copy a few tests from test_sre by Skip Montanaro · 21 years ago
  73. 46144be Fix test_limitations(). The match there is *expected* to raise RuntimeError. by Guido van Rossum · 21 years ago
  74. 8ed06da first cut at unittest version of re tests by Skip Montanaro · 21 years ago
  75. 408b6d3 Complete the absolute import patch for the test suite. All relative by Barry Warsaw · 22 years ago
  76. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  77. e056e4d Check in a testcase for SF bug #449000: re.sub(r'\n', ...) broke. by Guido van Rossum · 23 years ago
  78. 17741be SRE 2.1b1: don't do unicode tests under 1.5.2, or on unicode strings/patterns. by Fredrik Lundh · 24 years ago
  79. 2846b0a String method conversion. by Eric S. Raymond · 24 years ago
  80. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 24 years ago
  81. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  82. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  83. 8ae9ce5 Better conformance to the Python Style Guide: use spaces around operators. by Fred Drake · 24 years ago
  84. 8e6d571 -- enabled some temporarily disabled RE tests by Fredrik Lundh · 24 years ago
  85. 1151a8c -- whitespace cleanup (more tests to be added in the next commit) by Fredrik Lundh · 24 years ago
  86. e6f1646 Comment out repeated-group test for the moment by Andrew M. Kuchling · 24 years ago
  87. a3eacc4 Add nasty test case that overflows the stack with a repeated group by Andrew M. Kuchling · 24 years ago
  88. 2850d18 Switch to sre for regular expression matching (the new mini-re module by Guido van Rossum · 24 years ago
  89. c364cf8 Added tests for findall(). by Guido van Rossum · 26 years ago
  90. 1cd4d52 Remove RCS and #! cruft at top. by Guido van Rossum · 26 years ago
  91. 8430c58 AMK's latest by Guido van Rossum · 27 years ago
  92. 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 27 years ago
  93. f473cb0 Added tests for qualified sub and split by Guido van Rossum · 27 years ago
  94. f5910e4 Add tests for re.L(OCALE). by Guido van Rossum · 27 years ago
  95. dfa6790 New re version from AMK by Guido van Rossum · 27 years ago
  96. 9ec2ed4 Change test for re.sub() involving g<...> to use a multi-character by Guido van Rossum · 27 years ago
  97. d807b75 The re test suite is very slow on slower hosts. by Guido van Rossum · 27 years ago
  98. 95e8053 1.5a3 prerelease 1 from AMK by Guido van Rossum · 27 years ago
  99. 4994657 Some new tests by Jeffrey by Guido van Rossum · 27 years ago
  100. 23b2257 Added tests for sub, subn, and split. by Guido van Rossum · 27 years ago