1. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  2. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  3. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  4. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 22 years ago
  5. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  6. 82b2307 bug #133283, #477728, #483789, #490573 by Fredrik Lundh · 23 years ago
  7. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  8. 4e17384 Fix for #489672 (Neil Norwitz): memory leak in test_sre. by Guido van Rossum · 23 years ago
  9. 703ce81 (experimental) "finditer" method/function. this works pretty much by Fredrik Lundh · 23 years ago
  10. 6de22ef another major speedup: let sre.sub/subn check for escapes in the by Fredrik Lundh · 23 years ago
  11. f864aa8 sre.split should return the last segment, even if empty (sorry, barry) by Fredrik Lundh · 23 years ago
  12. dac5849 fixed character set description in docstring (SRE uses Python by Fredrik Lundh · 23 years ago
  13. 1296a8d sre.Scanner fixes (from Greg Chapman). also added a Scanner sanity by Fredrik Lundh · 23 years ago
  14. bec95b9 rewrote the pattern.sub and pattern.subn methods in C by Fredrik Lundh · 23 years ago
  15. 971e78b rewrote the pattern.split method in C by Fredrik Lundh · 23 years ago
  16. 397a654 SRE bug #441409: by Fredrik Lundh · 23 years ago
  17. 59b6865 fixed #449964: sre.sub raises an exception if the template contains a by Fredrik Lundh · 23 years ago
  18. 21009b9 an SRE bugfix a day keeps Guido away... by Fredrik Lundh · 23 years ago
  19. 89dfe9e Removed unreachable return to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  20. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  21. 214a0b13 init_sre(): Plug a little leak reported by Insure. by Barry Warsaw · 23 years ago
  22. 2d96f11 map re.sub() to string.replace(), when possible by Fredrik Lundh · 23 years ago
  23. d89a2e7 bug #416670 by Fredrik Lundh · 23 years ago
  24. df781e6 reapplied darryl gallion's minimizing repeat fix. I'm still not 100% by Fredrik Lundh · 23 years ago
  25. f71ae46 pythonware repository roundtrip (untabification) by Fredrik Lundh · 23 years ago
  26. 19af43d added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2x by Fredrik Lundh · 23 years ago
  27. b0f05bd merged with pythonware's SRE 2.1.1 codebase by Fredrik Lundh · 23 years ago
  28. 9c7eab8 SRE: made "copyright" string static, to avoid potential linking conflicts. by Fredrik Lundh · 23 years ago
  29. b25e1ad sre 2.1b2 update: by Fredrik Lundh · 23 years ago
  30. 5687ffe SF patch 404928: Support for next Cygwin gcc (2.95.2-8) by Tim Peters · 23 years ago
  31. 1c5aa69 bumped SRE version number to 2.1. cleaned up and added 1.5.2 by Fredrik Lundh · 24 years ago
  32. 6f5cba6 fixed a memory leak in pattern cleanup (patch #103248 by cgw) by Fredrik Lundh · 24 years ago
  33. b35ffc0 added "magic" number to the _sre module, to avoid weird errors caused by Fredrik Lundh · 24 years ago
  34. fa25a7d -- don't use recursion for unbounded non-greedy repeat (bugs #115903, #115696) by Fredrik Lundh · 24 years ago
  35. 770617b SRE fixes for 2.1 alpha: by Fredrik Lundh · 24 years ago
  36. 48f224c Fix bug 126587: matchobject.groupdict() leaks memory because of a missing by Andrew M. Kuchling · 24 years ago
  37. ebc37b2 -- properly reset groups in findall (bug #117612) by Fredrik Lundh · 24 years ago
  38. 562586e Accept keyword arguments for (most) pattern and match object by Fredrik Lundh · 24 years ago
  39. 65d4bc6 Fixed negative lookahead/lookbehind. Closes bug #115618. by Fredrik Lundh · 24 years ago
  40. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  41. 5644b7f - fixed yet another gcc -pedantic warning by Fredrik Lundh · 24 years ago
  42. 510c97b return -1 for undefined groups (as implemented in 1.5.2) instead of by Fredrik Lundh · 24 years ago
  43. e67d8e5 oops. accidentally reintroduced a memory leak. put the bugfix back. by Fredrik Lundh · 24 years ago
  44. 33accc1 don't mistake memory errors (including reaching the recursion limit) by Fredrik Lundh · 24 years ago
  45. 152fbe8 pattern_findall(): Plug small memory leak discovered by Insure. by Barry Warsaw · 24 years ago
  46. 239548f The sre test suite currently overruns the stack on Win64, Linux64, and Monterey by Trent Mick · 24 years ago
  47. 5810064 -- changed findall to return empty strings instead of None by Fredrik Lundh · 24 years ago
  48. 0d15908 Added a missing } in the USE_STACKCHECK code. by Jack Jansen · 24 years ago
  49. 7898c3e -- reset marks if repeat_one tail doesn't match by Fredrik Lundh · 24 years ago
  50. 18c2aa2 + if USE_STACKCHECK is defined, use PyOS_CheckStack to look by Fredrik Lundh · 24 years ago
  51. 96ab465 -- added recursion limit (currently ~10,000 levels) by Fredrik Lundh · 24 years ago
  52. e186983 final 0.9.8 updates: by Fredrik Lundh · 24 years ago
  53. 2f2c67d -- fixed width calculations for alternations by Fredrik Lundh · 24 years ago
  54. 29c4ba9 SRE 0.9.8: passes the entire test suite by Fredrik Lundh · 24 years ago
  55. 8a3ebf8 -- SRE 0.9.6 sync. this includes: by Fredrik Lundh · 24 years ago
  56. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  57. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  58. 2855290 maintenance release: by Fredrik Lundh · 24 years ago
  59. 72b82ba - fixed grouping error bug by Fredrik Lundh · 24 years ago
  60. 6f01398 - added lookbehind support (?<=pattern), (?<!pattern). by Fredrik Lundh · 24 years ago
  61. c230173 - experimental: added two new attributes to the match object: by Fredrik Lundh · 24 years ago
  62. 7cafe4d - actually enabled charset anchors in the engine (still not by Fredrik Lundh · 24 years ago
  63. 3562f11 -- use charset bitmaps where appropriate. this gives a 5-10% by Fredrik Lundh · 24 years ago
  64. c13222c - fixed "{ in any other context" bug by Fredrik Lundh · 24 years ago
  65. 22d2546 today's SRE update: by Fredrik Lundh · 24 years ago
  66. ef34bd2 -- changed $ to match before a trailing newline, even by Fredrik Lundh · 24 years ago
  67. 0640e11 the mad patcher strikes again: by Fredrik Lundh · 24 years ago
  68. 43b3b49 - fixed lookahead assertions (#10, #11, #12) by Fredrik Lundh · 24 years ago
  69. df02d0b - fixed default value handling in group/groupdict by Fredrik Lundh · 24 years ago
  70. 01016fe - fixed split behaviour on empty matches by Fredrik Lundh · 24 years ago
  71. 29c08be still trying to figure out how to fix the remaining by Fredrik Lundh · 24 years ago
  72. 8094611 - fixed another split problem (those semantics are weird...) by Fredrik Lundh · 24 years ago
  73. be2211e - fixed split by Fredrik Lundh · 24 years ago
  74. b389df3 - renamed "tolower" hook (it happened to work with by Fredrik Lundh · 24 years ago
  75. 75f2d67 - last patch broke parse_template; fixed by changing some by Fredrik Lundh · 24 years ago
  76. 6c68dc7 - removed "alpha only" licensing restriction by Fredrik Lundh · 24 years ago
  77. 436c3d58 towards 1.6b1 by Fredrik Lundh · 24 years ago
  78. b1aa195 Fredrik Lundh: here's the 96.6% version of SRE by Jeremy Hylton · 24 years ago
  79. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  80. 2953088 Remove CRLF line endings. by Guido van Rossum · 24 years ago
  81. b700df9 Adding Fredrik Lundh's _sre.c module and its header files. by Guido van Rossum · 24 years ago