1. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 10 years ago
  2. 7865f21 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 10 years ago
  3. bc4ece5 allow longs as indexes to group() (closes #22530) by Benjamin Peterson · 11 years ago
  4. e50fe4c Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 11 years ago
  5. fdb73ed Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 12 years ago
  6. cf29ba8 Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in by Serhiy Storchaka · 12 years ago
  7. 3ade66c Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 12 years ago
  8. 616f2fe Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 12 years ago
  9. 6a8e2b4 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 12 years ago
  10. e18e05c Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 12 years ago
  11. 9dccb01 use PyInt_FromSsize_t instead of PyLong_FromSsize_t (#10182) by Benjamin Peterson · 13 years ago
  12. c08ded9 rename MathcObject to match object in doctrings for re module (#16760) by Andrew Svetlov · 13 years ago
  13. 1c6c90f Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 13 years ago
  14. 64ab35e 1 << 31 is invalid for signed integers, fix it by making 1 unsigned. by Gregory P. Smith · 13 years ago
  15. b83575b Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 13 years ago
  16. b83ea14 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 13 years ago
  17. d583068 Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 14 years ago
  18. 6116d4a stop using the old brain-dead interface for providing attributes/methods by Benjamin Peterson · 14 years ago
  19. 8ffe7bb Remove unused variables and a variable initialization. by Brett Cannon · 15 years ago
  20. e266d3e ready _sre types by Benjamin Peterson · 15 years ago
  21. efdddd3 Issue #3299: Fix possible crash in the _sre module when given bad by Antoine Pitrou · 16 years ago
  22. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 16 years ago
  23. e3c4fd9 - Issue #3629: Fix sre "bytecode" validator for an end case. by Guido van Rossum · 17 years ago
  24. 8b762f0 Tracker issue 3487: sre "bytecode" verifier. by Guido van Rossum · 17 years ago
  25. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  26. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  27. 4956d2b Silence Coverity false alerts with CIDs #172, #183, #184 by Christian Heimes · 18 years ago
  28. 4473d22 Issue 846388. Adds a call to PyErr_CheckSignals to by Facundo Batista · 18 years ago
  29. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 18 years ago
  30. 1ff91d9 Patch # 1140 (my code, approved by Effbot). by Guido van Rossum · 18 years ago
  31. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  32. 36126c4 Cause a PyObject_Malloc() failure to trigger a MemoryError, and then by Andrew M. Kuchling · 19 years ago
  33. ef0de02 Try to handle a malloc failure. I'm not entirely sure this is correct. by Neal Norwitz · 19 years ago
  34. a6d80fa Impl ssize_t by Neal Norwitz · 19 years ago
  35. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
  36. 964f597 METH_NOARGS functions do get called with two args. by Georg Brandl · 19 years ago
  37. fbef588 Fix C function calling conventions in _sre module. by Georg Brandl · 19 years ago
  38. 2d40077 needforspeed: use PyObject_MALLOC instead of system malloc for small by Jack Diederich · 19 years ago
  39. 816a162 C++ compiler cleanup: proper casts by Skip Montanaro · 19 years ago
  40. aefd8ca Move constructors, add some casts to make C++ compiler happy. Still a problem by Anthony Baxter · 19 years ago
  41. 94a9c09 Rename sre.py -> re.py by Neal Norwitz · 19 years ago
  42. 60da316 Thanks to Coverity, these were all reported by their Prevent tool. by Neal Norwitz · 19 years ago
  43. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  44. 3d56350 _compile(): raise an exception if downcasting to SRE_CODE loses information: by Tim Peters · 20 years ago
  45. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  46. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  47. 166878f Fixing bug #1072259 in SRE. by Gustavo Niemeyer · 21 years ago
  48. 9447874 Add docstrings for regular expression objects and methods. by Raymond Hettinger · 21 years ago
  49. 0506c64 Fixing bug #817234, which made SRE get into an infinite loop on by Gustavo Niemeyer · 21 years ago
  50. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 21 years ago
  51. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 21 years ago
  52. 027bb63 Add weakref support to sockets and re pattern objects. by Raymond Hettinger · 21 years ago
  53. 601b963 - Fixing annoying warnings. by Gustavo Niemeyer · 22 years ago
  54. 2cbdc2a Cleaning up recursive pieces left in the reorganization. by Gustavo Niemeyer · 22 years ago
  55. 0f0c06a Removing dead code. by Gustavo Niemeyer · 22 years ago
  56. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 22 years ago
  57. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
  58. 28b5bb3 Fixing bug described in patch #756032, where SRE reads invalid data by Gustavo Niemeyer · 22 years ago
  59. 1a44448 Changes to sre.c after the application of patch #726869 have increased by Andrew MacIntyre · 22 years ago
  60. c24fe36 Allow _sre.c to compile with Python 2.2 by Andrew M. Kuchling · 22 years ago
  61. caf1c9d - Included detailed documentation in _sre.c explaining how, when, and why by Gustavo Niemeyer · 22 years ago
  62. 3646ab9 Fix for part of the problem mentioned in #725149 by Greg Chapman. by Gustavo Niemeyer · 22 years ago
  63. c34f255 Applied patch #725106, by Greg Chapman, fixing capturing groups by Gustavo Niemeyer · 22 years ago
  64. c23fb77 Applying patch #726869 by Andrew I MacIntyre, reducing in _sre.c the by Gustavo Niemeyer · 22 years ago
  65. 3c9068b Made MAX_UNTIL/MIN_UNTIL code more coherent about mark protection, by Gustavo Niemeyer · 22 years ago
  66. be733ee More work on bug #672491 and patch #712900. by Gustavo Niemeyer · 22 years ago
  67. 1aca359 - Fixed bug #672491. This change restores the behavior of lastindex/lastgroup by Gustavo Niemeyer · 22 years ago
  68. 78e2f06 Fully support 32-bit codes. Enable BIGCHARSET in UCS-4 builds. by Martin v. Löwis · 22 years ago
  69. 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 22 years ago
  70. 09705f0 fix for SF #635398 (don't "downcast" return strings from unicode to ascii) by Fredrik Lundh · 23 years ago
  71. addfe0c Make private functions static so we don't pollute the namespace by Neal Norwitz · 23 years ago
  72. c523b04 Fixed sre bug "[#581080] Provoking infinite scanner loops". by Gustavo Niemeyer · 23 years ago
  73. 4e7be06 Fixed bug #470582, using a modified version of patch #527371, from Greg Chapman. by Gustavo Niemeyer · 23 years ago
  74. b6a4505 Cray fixup as seen in bug #558153. by Michael W. Hudson · 23 years ago
  75. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 23 years ago
  76. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  77. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 23 years ago
  78. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 23 years ago
  79. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 23 years ago
  80. 82b2307 bug #133283, #477728, #483789, #490573 by Fredrik Lundh · 24 years ago
  81. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  82. 4e17384 Fix for #489672 (Neil Norwitz): memory leak in test_sre. by Guido van Rossum · 24 years ago
  83. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 24 years ago
  84. 6de22ef another major speedup: let sre.sub/subn check for escapes in the by Fredrik Lundh · 24 years ago
  85. f864aa8 sre.split should return the last segment, even if empty (sorry, barry) by Fredrik Lundh · 24 years ago
  86. dac5849 fixed character set description in docstring (SRE uses Python by Fredrik Lundh · 24 years ago
  87. 1296a8d sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity by Fredrik Lundh · 24 years ago
  88. bec95b9 rewrote the pattern.sub and pattern.subn methods in C by Fredrik Lundh · 24 years ago
  89. 971e78b rewrote the pattern.split method in C by Fredrik Lundh · 24 years ago
  90. 397a654 SRE bug #441409: by Fredrik Lundh · 24 years ago
  91. 59b6865 fixed #449964: sre.sub raises an exception if the template contains a by Fredrik Lundh · 24 years ago
  92. 21009b9 an SRE bugfix a day keeps Guido away... by Fredrik Lundh · 24 years ago
  93. 89dfe9e Removed unreachable return to silence SGI compiler. by Sjoerd Mullender · 24 years ago
  94. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 24 years ago
  95. 214a0b13 init_sre(): Plug a little leak reported by Insure. by Barry Warsaw · 24 years ago
  96. 2d96f11 map re.sub() to string.replace(), when possible by Fredrik Lundh · 24 years ago
  97. d89a2e7 bug #416670 by Fredrik Lundh · 24 years ago
  98. df781e6 reapplied darryl gallion's minimizing repeat fix. I'm still not 100% by Fredrik Lundh · 24 years ago
  99. f71ae46 pythonware repository roundtrip (untabification) by Fredrik Lundh · 24 years ago
  100. 19af43d added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2x by Fredrik Lundh · 24 years ago