| Commit message (Expand) | Author | Age | Files | Lines |
* | #13054: fix usage of sys.maxunicode after PEP-393. | Ezio Melotti | 2011-10-04 | 1 | -1/+3 |
|
|
* | Issue #8990: array.fromstring() and array.tostring() get renamed to | Antoine Pitrou | 2010-09-01 | 1 | -1/+1 |
|
|
* | Merged revisions 66894 via svnmerge from | Benjamin Peterson | 2008-10-14 | 1 | -6/+0 |
|
|
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 1 | -2/+1 |
|
|
* | Fix 're' to work on bytes. It could do with a few more tests, though. | Thomas Wouters | 2008-03-18 | 1 | -1/+1 |
|
|
* | Merged revisions 59666-59679 via svnmerge from | Christian Heimes | 2008-01-03 | 1 | -1/+1 |
|
|
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -5/+5 |
|
|
* | Merged revisions 56154-56264 via svnmerge from | Guido van Rossum | 2007-07-11 | 1 | -1/+1 |
|
|
* | Creating an array with a bytes object as initializer | Guido van Rossum | 2007-07-03 | 1 | -0/+1 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -4/+4 |
|
|
* | Checkpoint. Manipulated things so that string literals are always | Guido van Rossum | 2007-04-27 | 1 | -11/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -2/+2 |
|
|
* | [Bug #1177831] Fix generation of code for GROUPREF_EXISTS. Thanks to Andre M... | Andrew M. Kuchling | 2005-06-02 | 1 | -1/+1 |
|
|
* | Complete the previous effort to factor out constant expressions | Raymond Hettinger | 2005-02-28 | 1 | -4/+15 |
|
|
* | make sure to check for this limit even if we're running with -O | Fredrik Lundh | 2004-10-15 | 1 | -2/+4 |
|
|
* | Fix _sre.CODESIZE on 64-bit machines in UCS-4 mode. Fixes #931848. | Martin v. Löwis | 2004-05-07 | 1 | -3/+5 |
|
|
* | Revert 1.51 booleans so that sre will still run on old pythons. | Raymond Hettinger | 2004-03-27 | 1 | -6/+6 |
|
|
* | Remove unnecessary test. (Thanks Skip) | Raymond Hettinger | 2004-03-26 | 1 | -6/+0 |
|
|
* | Simple optimizations: | Raymond Hettinger | 2004-03-26 | 1 | -47/+69 |
|
|
* | Use True/False instead of 0/1 for character classes. | Martin v. Löwis | 2004-03-25 | 1 | -6/+6 |
|
|
* | Implemented non-recursive SRE matching. | Gustavo Niemeyer | 2003-10-17 | 1 | -0/+13 |
|
|
* | Addendum to #764548: restore 2.1 compatibility. | Just van Rossum | 2003-07-02 | 1 | -2/+8 |
|
|
* | Fix and test for bug #764548: | Just van Rossum | 2003-07-02 | 1 | -5/+5 |
|
|
* | Fully support 32-bit codes. Enable BIGCHARSET in UCS-4 builds. | Martin v. Löwis | 2003-04-19 | 1 | -23/+46 |
|
|
* | SF patch #720991 by Gary Herron: | Guido van Rossum | 2003-04-14 | 1 | -2/+5 |
|
|
* | Fix from SF patch #633359 by Greg Chapman for SF bug #610299: | Guido van Rossum | 2003-02-24 | 1 | -1/+1 |
|
|
* | Disable big charsets in UCS-4 builds. Works around #599377. | Martin v. Löwis | 2002-09-26 | 1 | -0/+3 |
|
|
* | made the code match the comments (1.5.2 compatibility) | Fredrik Lundh | 2002-06-27 | 1 | -3/+3 |
|
|
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-02 | 1 | -1/+1 |
|
|
* | Added docstrings by Neal Norwitz. This closes SF bug #450980. | Fred Drake | 2001-09-04 | 1 | -0/+2 |
|
|
* | Whitespace normalization, plus: | Tim Peters | 2001-07-21 | 1 | -1/+1 |
|
|
* | Patch #442512: put block indices in the right byte order on bigendian systems. | Martin v. Löwis | 2001-07-19 | 1 | -2/+5 |
|
|
* | added martin's BIGCHARSET patch to SRE 2.1.1. martin reports 2x | Fredrik Lundh | 2001-07-02 | 1 | -10/+71 |
|
|
* | sre 2.1b2 update: | Fredrik Lundh | 2001-03-22 | 1 | -7/+9 |
|
|
* | - restored 1.5.2 compatibility (sorry, eric) | Fredrik Lundh | 2001-02-18 | 1 | -2/+0 |
|
|
* | bunch more __all__ lists | Skip Montanaro | 2001-02-15 | 1 | -0/+2 |
|
|
* | from the really-stupid-bug department: uppercase literals should match | Fredrik Lundh | 2001-01-15 | 1 | -1/+2 |
|
|
* | added "magic" number to the _sre module, to avoid weird errors caused | Fredrik Lundh | 2001-01-15 | 1 | -0/+2 |
|
|
* | SRE fixes for 2.1 alpha: | Fredrik Lundh | 2001-01-14 | 1 | -3/+3 |
|
|
* | Fixed too ambitious "nothing to repeat" check. Closes bug #114033. | Fredrik Lundh | 2000-10-07 | 1 | -1/+1 |
|
|
* | -- reset marks if repeat_one tail doesn't match | Fredrik Lundh | 2000-08-07 | 1 | -103/+153 |
|
|
* | final 0.9.8 updates: | Fredrik Lundh | 2000-08-01 | 1 | -25/+26 |
|
|
* | -- fixed width calculations for alternations | Fredrik Lundh | 2000-08-01 | 1 | -2/+3 |
|
|
* | SRE 0.9.8: passes the entire test suite | Fredrik Lundh | 2000-08-01 | 1 | -35/+29 |
|
|
* | -- SRE 0.9.6 sync. this includes: | Fredrik Lundh | 2000-07-23 | 1 | -2/+12 |
|
|
* | maintenance release: | Fredrik Lundh | 2000-07-05 | 1 | -1/+3 |
|
|
* | - fixed grouping error bug | Fredrik Lundh | 2000-07-03 | 1 | -6/+13 |
|
|
* | - added lookbehind support (?<=pattern), (?<!pattern). | Fredrik Lundh | 2000-07-03 | 1 | -12/+17 |
|
|
* | - experimental: added two new attributes to the match object: | Fredrik Lundh | 2000-07-02 | 1 | -1/+7 |
|
|