1. 86e4237 Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 7 years ago
  2. 7e10dbb Issue #29444: Fixed out-of-bounds buffer access in the group() method of by Serhiy Storchaka · 7 years ago
  3. bcf4dcc Issue #28727: Optimize pattern_richcompare() for a==a by Victor Stinner · 8 years ago
  4. e670b2d Issue #28727: Fix typo in pattern_richcompare() by Victor Stinner · 8 years ago
  5. b44fb12 Implement rich comparison for _sre.SRE_Pattern by Victor Stinner · 8 years ago
  6. a6d75fd Issue 24454: Removed unused match_getitem_doc. by Eric V. Smith · 8 years ago
  7. b569086 Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. Thanks Serhiy Storchaka. by Eric V. Smith · 8 years ago
  8. 605bdae Issue 24454: Improve the usability of the re match object named group API by Eric V. Smith · 8 years ago
  9. ca47063 replace Py_(u)intptr_t with the c99 standard types by Benjamin Peterson · 8 years ago
  10. 559bb6a Rename _PyObject_FastCall() to _PyObject_FastCallDict() by Victor Stinner · 8 years ago
  11. ea5e599 pattern_subx() now uses fast call by Victor Stinner · 8 years ago
  12. 0a3ccac merge 3.5 (#27774) by Benjamin Peterson · 8 years ago
  13. 76aa1fb merge 3.4 (#27774) by Benjamin Peterson · 8 years ago
  14. 10bc0f6 merge 3.3 (#27774) by Benjamin Peterson · 8 years ago
  15. 3a27b08 do not decref value borrowed from list (closes #27774) by Benjamin Peterson · 8 years ago
  16. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  17. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  18. 977b3ac Issue #27177: Match objects in the re module now support index-like objects by Serhiy Storchaka · 8 years ago
  19. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  20. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  21. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  22. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  23. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  24. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  25. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  26. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 8 years ago
  27. 5bccb29 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  28. 02eae6b Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  29. 03d6ee3 Issue #18684: Fixed reading out of the buffer in the re module. by Serhiy Storchaka · 9 years ago
  30. bb215e2 Merge 3.5 (Issue #19235) by Yury Selivanov · 9 years ago
  31. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  32. 66dc464 Issue #24426: Fast searching optimization in regular expressions now works by Serhiy Storchaka · 9 years ago
  33. 2d0a69a Fix Windows build breakage from checkins on Issues #20148 and #20168. by Larry Hastings · 9 years ago
  34. a860aea Issue #20148: Converted the _sre module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  35. 07360df Issue #14260: The groupindex attribute of regular expression pattern object by Serhiy Storchaka · 9 years ago
  36. 632a77e Issue #22364: Improved some re error messages using regex for hints. by Serhiy Storchaka · 9 years ago
  37. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 9 years ago
  38. 4b8f894 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  39. 5aa4744 Issue #22584: Got rid of character tables in _sre.c and use standard macros by Serhiy Storchaka · 10 years ago
  40. 9baa5b2 Issue #22437: Number of capturing groups in regular expression is no longer by Serhiy Storchaka · 10 years ago
  41. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  42. 429b59e Issue #20998: Fixed re.fullmatch() of repeated single character pattern by Serhiy Storchaka · 10 years ago
  43. ccdf352 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago
  44. a537eb4 Issue #20283: RE pattern methods now accept the string keyword parameters by Serhiy Storchaka · 10 years ago
  45. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 10 years ago
  46. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 10 years ago
  47. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 10 years ago
  48. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 10 years ago
  49. df7c22b Issue #19723: Missed one conversion to the new Argument Clinic syntax. by Larry Hastings · 10 years ago
  50. 16c5191 Issue #20144: Argument Clinic now supports simple constants as parameter by Larry Hastings · 10 years ago
  51. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  52. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  53. f558778 Fix compiler warning (especially on Windows 64-bit): don't truncate Py_ssize_t by Victor Stinner · 11 years ago
  54. efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  55. 1985f7b Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  56. 8444ebb Issue #18685: Extract template part of _sre.c into separated sre_lib.h file. by Serhiy Storchaka · 11 years ago
  57. 9eabac6 Issue #18685: Restore re performance to pre-PEP 393 levels. by Serhiy Storchaka · 11 years ago
  58. 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  59. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  60. 36af10c Issue #17087: Improved the repr for regular expression match objects. by Serhiy Storchaka · 11 years ago
  61. baced56 Fix a refleak in _sre by Brett Cannon · 11 years ago
  62. 2532497 Issue #18468: The re.split, re.findall, and re.sub functions and the group() by Serhiy Storchaka · 11 years ago
  63. daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
  64. 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
  65. a83a022 Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in by Serhiy Storchaka · 11 years ago
  66. 134f0de Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in by Serhiy Storchaka · 11 years ago
  67. 1fa174a Get rid of signed/unsigned comparaison in _sre.c by Victor Stinner · 11 years ago
  68. 8fa8ee3 Issue #18701: Remove support of old CPython versions (<3.0) from C code. by Serhiy Storchaka · 11 years ago
  69. b94f61b Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  70. 1f35ae0 Issue #17998: Fix an internal error in regular expression engine. by Serhiy Storchaka · 11 years ago
  71. 6d80046 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  72. 4bb1734 Issue #17016: Get rid of possible pointer wraparounds and integer overflows by Serhiy Storchaka · 11 years ago
  73. e924ddb Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  74. b0c75a7 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  75. fa46816 Issue #9669: Protect re against infinite loops on zero-width matching in by Serhiy Storchaka · 11 years ago
  76. 165ee96 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  77. a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  78. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  79. ac10693 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 11 years ago
  80. c1b59d4 Issue #16688: Fix backreferences did make case-insensitive regex fail on non-ASCII strings. by Serhiy Storchaka · 11 years ago
  81. 6d469eb rename MathcObject to match object in doctrings for re module (#16760) by Andrew Svetlov · 11 years ago
  82. 41dc9f3 rename MathcObject to match object in doctrings for re module (#16760) by Andrew Svetlov · 11 years ago
  83. 0b64c14 rename MathcObject to match object in doctrings for re module (#16760) by Andrew Svetlov · 11 years ago
  84. 7737757 Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 11 years ago
  85. 70dcef4 Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 11 years ago
  86. 56ad5ed Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 11 years ago
  87. 60112ae 1 << 31 is invalid for signed integers, fix it by making 1 unsigned. by Gregory P. Smith · 11 years ago
  88. c0dd80e 1 << 31 is invalid for signed integers, fix it by making 1 unsigned. by Gregory P. Smith · 11 years ago
  89. 90555d0 1 << 31 is invalid for signed integers, fix it by making 1 unsigned. by Gregory P. Smith · 11 years ago
  90. d8d1a0a Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  91. 9a2b267 Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  92. 43fb54c Issue #10182: The re module doesn't truncate indices to 32 bits anymore. by Antoine Pitrou · 12 years ago
  93. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  94. 7a6d7cf Issue #9566: Use the right type to fix a compiler warnings on Win64 by Victor Stinner · 12 years ago
  95. 7b3c975 closes #14259 re.finditer() now takes keyword arguments: pos, endpos. by Sean Reifschneider · 12 years ago
  96. 33d21a2 merge 3.2 (#14212) by Benjamin Peterson · 12 years ago
  97. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 12 years ago
  98. 88748d7 Issue #10951: Fix compiler warnings in _sre.c by Ross Lagerwall · 12 years ago
  99. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  100. c6b4ef1 default - Fix closes Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 13 years ago