1. 4919747 Simplify flags checks in sre_compile.py. (GH-9718) by Serhiy Storchaka · 6 years ago
  2. e0c19dd bpo-34681: Rename class Pattern in sre_parse to State. (GH-9310) by Serhiy Storchaka · 6 years ago
  3. 3557b05 bpo-31690: Allow the inline flags "a", "L", and "u" to be used as group flags for RE. (#3885) by Serhiy Storchaka · 7 years ago
  4. 4ab6abf bpo-30299: Display a bytecode when compile a regex in debug mode. (#1491) by Serhiy Storchaka · 7 years ago
  5. 821a9d1 bpo-30340: Enhanced regular expressions optimization. (#1542) by Serhiy Storchaka · 7 years ago
  6. 6d336a0 bpo-30285: Optimize case-insensitive matching and searching (#1482) by Serhiy Storchaka · 7 years ago
  7. 7186cc2 bpo-30277: Replace _sre.getlower() with _sre.ascii_tolower() and _sre.unicode_tolower(). (#1468) by Serhiy Storchaka · 7 years ago
  8. 898ff03 bpo-30215: Make re.compile() locale agnostic. (#1361) by Serhiy Storchaka · 7 years ago
  9. 726a57d Issue #28765: _sre.compile() now checks the type of groupindex and indexgroup by Victor Stinner · 8 years ago
  10. be9a4e5 Issue #433028: Added support of modifier spans in regular expressions. by Serhiy Storchaka · 8 years ago
  11. 66dc464 Issue #24426: Fast searching optimization in regular expressions now works by Serhiy Storchaka · 9 years ago
  12. 632a77e Issue #22364: Improved some re error messages using regex for hints. by Serhiy Storchaka · 9 years ago
  13. 83e8027 Issue #22818: Splitting on a pattern that could match an empty string now by Serhiy Storchaka · 9 years ago
  14. ab14088 Minor code clean up and improvements in the re module. by Serhiy Storchaka · 10 years ago
  15. eb99e51 Got rid of the array module dependency in the re module. by Serhiy Storchaka · 10 years ago
  16. 19e9158 Got rid of the array module dependency in the re module. by Serhiy Storchaka · 10 years ago
  17. 5619ab9 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  18. 0c938f6 Issue #12728: Different Unicode characters having the same uppercase but by Serhiy Storchaka · 10 years ago
  19. 5f33677 Merge heads by Serhiy Storchaka · 10 years ago
  20. df1b699 Issue #22823: Use set literals instead of creating a set from a list by Raymond Hettinger · 10 years ago
  21. c7f7d38 Issue #22434: Constants in sre_constants are now named constants (enum-like). by Serhiy Storchaka · 10 years ago
  22. 4b8f894 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  23. 9baa5b2 Issue #22437: Number of capturing groups in regular expression is no longer by Serhiy Storchaka · 10 years ago
  24. b1847e7 Issue #17381: Fixed handling of case-insensitive ranges in regular expressions. by Serhiy Storchaka · 10 years ago
  25. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  26. 68457be Issue #19329: Optimized compiling charsets in regular expressions. by Serhiy Storchaka · 11 years ago
  27. 1985f7b Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  28. efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  29. 79aa68d Issue #19387: explain and test the sre overlap table by Antoine Pitrou · 11 years ago
  30. 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  31. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  32. c8bf95c Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0 by Serhiy Storchaka · 11 years ago
  33. 228c194 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  34. 98985a1 Issue #2537: Remove breaked check which prevented valid regular expressions. by Serhiy Storchaka · 11 years ago
  35. 3efad82 Issue #18647: Temporary disable the "nothing to repeat" check to make buildbots happy. by Serhiy Storchaka · 11 years ago
  36. 5e376a7 Issue #18647: Temporary disable the "nothing to repeat" check to make buildbots happy. by Serhiy Storchaka · 11 years ago
  37. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  38. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  39. 678ad51 Issue #17516: remove dead code by Victor Stinner · 11 years ago
  40. a0eb809 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  41. 70ca021 Issue #13169: The maximal repetition number in a regular expression has been by Serhiy Storchaka · 11 years ago
  42. a9860ae #13054: fix usage of sys.maxunicode after PEP-393. by Ezio Melotti · 13 years ago
  43. 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
  44. 6c940d6 Merged revisions 66894 via svnmerge from by Benjamin Peterson · 16 years ago
  45. 5e69685 Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from by Christian Heimes · 16 years ago
  46. 40a088d Fix 're' to work on bytes. It could do with a few more tests, though. by Thomas Wouters · 16 years ago
  47. 072c0f1 Merged revisions 59666-59679 via svnmerge from by Christian Heimes · 17 years ago
  48. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  49. ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
  50. 992d4a3 Merged revisions 56154-56264 via svnmerge from by Guido van Rossum · 17 years ago
  51. 6b826ab Creating an array with a bytes object as initializer by Guido van Rossum · 17 years ago
  52. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  53. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  54. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  55. c30faa8 [Bug #1177831] Fix generation of code for GROUPREF_EXISTS. Thanks to Andre Malo for the fix. by Andrew M. Kuchling · 19 years ago
  56. 049ade2 Complete the previous effort to factor out constant expressions by Raymond Hettinger · 19 years ago
  57. 5e7d51b make sure to check for this limit even if we're running with -O by Fredrik Lundh · 20 years ago
  58. 7d9c6c7 Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. by Martin v. Löwis · 20 years ago
  59. d732c95 Revert 1.51 booleans so that sre will still run on old pythons. by Raymond Hettinger · 20 years ago
  60. 29e3837 Remove unnecessary test. (Thanks Skip) by Raymond Hettinger · 20 years ago
  61. 01c9f8c Simple optimizations: by Raymond Hettinger · 20 years ago
  62. bc503d1 Use True/False instead of 0/1 for character classes. by Martin v. Löwis · 20 years ago
  63. ad3fc44 Implemented non-recursive SRE matching. by Gustavo Niemeyer · 21 years ago
  64. 7490250 Addendum to #764548: restore 2.1 compatibility. by Just van Rossum · 21 years ago
  65. 12723ba Fix and test for bug #764548: by Just van Rossum · 21 years ago
  66. 78e2f06 Fully support 32-bit codes. Enable BIGCHARSET in UCS-4 builds. by Martin v. Löwis · 21 years ago
  67. 41c99e7 SF patch #720991 by Gary Herron: by Guido van Rossum · 21 years ago
  68. 577fb5a Fix from SF patch #633359 by Greg Chapman for SF bug #610299: by Guido van Rossum · 21 years ago
  69. 67c4cb1 Disable big charsets in UCS-4 builds. Works around #599377. Will backport to 2.2 by Martin v. Löwis · 22 years ago
  70. 4fb7027 made the code match the comments (1.5.2 compatibility) by Fredrik Lundh · 22 years ago
  71. f13eb55 Replace boolean test with is None. by Raymond Hettinger · 22 years ago
  72. b8f2274 Added docstrings by Neal Norwitz. This closes SF bug #450980. by Fred Drake · 23 years ago
  73. 87cc0c3 Whitespace normalization, plus: by Tim Peters · 23 years ago
  74. 3550dd3 Patch #442512: put block indices in the right byte order on bigendian systems. by Martin v. Löwis · 23 years ago
  75. 19af43d added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2x by Fredrik Lundh · 23 years ago
  76. b25e1ad sre 2.1b2 update: by Fredrik Lundh · 23 years ago
  77. f2989b2 - restored 1.5.2 compatibility (sorry, eric) by Fredrik Lundh · 23 years ago
  78. 0de6580 bunch more __all__ lists by Skip Montanaro · 23 years ago
  79. 2e24044 from the really-stupid-bug department: uppercase literals should match by Fredrik Lundh · 23 years ago
  80. b35ffc0 added "magic" number to the _sre module, to avoid weird errors caused by Fredrik Lundh · 23 years ago
  81. 770617b SRE fixes for 2.1 alpha: by Fredrik Lundh · 24 years ago
  82. 13ac992 Fixed too ambitious "nothing to repeat" check. Closes bug #114033. by Fredrik Lundh · 24 years ago
  83. 7898c3e -- reset marks if repeat_one tail doesn't match by Fredrik Lundh · 24 years ago
  84. e186983 final 0.9.8 updates: by Fredrik Lundh · 24 years ago
  85. 2f2c67d -- fixed width calculations for alternations by Fredrik Lundh · 24 years ago
  86. 29c4ba9 SRE 0.9.8: passes the entire test suite by Fredrik Lundh · 24 years ago
  87. 8a3ebf8 -- SRE 0.9.6 sync. this includes: by Fredrik Lundh · 24 years ago
  88. 2855290 maintenance release: by Fredrik Lundh · 24 years ago
  89. 72b82ba - fixed grouping error bug by Fredrik Lundh · 24 years ago
  90. 6f01398 - added lookbehind support (?<=pattern), (?<!pattern). by Fredrik Lundh · 24 years ago
  91. c230173 - experimental: added two new attributes to the match object: by Fredrik Lundh · 24 years ago
  92. 7cafe4d - actually enabled charset anchors in the engine (still not by Fredrik Lundh · 24 years ago
  93. 3562f11 -- use charset bitmaps where appropriate. this gives a 5-10% by Fredrik Lundh · 24 years ago
  94. 22d2546 today's SRE update: by Fredrik Lundh · 24 years ago
  95. 55a4f4a - fixed code generation error in multiline mode by Fredrik Lundh · 24 years ago
  96. 4ccea94 - reverted to "\x is binary byte" by Fredrik Lundh · 24 years ago
  97. 0640e11 the mad patcher strikes again: by Fredrik Lundh · 24 years ago
  98. 43b3b49 - fixed lookahead assertions (#10, #11, #12) by Fredrik Lundh · 24 years ago
  99. 90a0791 - pedantic: make sure "python -t" doesn't complain... by Fredrik Lundh · 24 years ago
  100. 01016fe - fixed split behaviour on empty matches by Fredrik Lundh · 24 years ago