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