| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 75070 via svnmerge from | Ezio Melotti | 2009-09-26 | 1 | -4/+6 |
|
|
* | remove string.maketrans | Benjamin Peterson | 2009-06-28 | 1 | -22/+0 |
|
|
* | #4351: more appropriate DeprecationWarning stacklevels | Philip Jenvey | 2009-05-08 | 1 | -1/+1 |
|
|
* | Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate | Georg Brandl | 2009-04-12 | 1 | -0/+3 |
|
|
* | #4361: fix string.py docstring, clarify that only ASCII characters are in its... | Georg Brandl | 2008-11-22 | 1 | -9/+9 |
|
|
* | Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via sv... | Benjamin Peterson | 2008-11-16 | 1 | -3/+2 |
|
|
* | Rename buffer -> bytearray. | Guido van Rossum | 2007-11-21 | 1 | -1/+1 |
|
|
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -3/+3 |
|
|
* | Changed some ValueError's to KeyError and IndexError. | Eric Smith | 2007-09-04 | 1 | -3/+13 |
|
|
* | Removed used_args param from string.Formatter.get_field. It was left in by m... | Eric Smith | 2007-09-02 | 1 | -4/+2 |
|
|
* | string.maketrans() now produces translation tables for bytes.translate() -- w... | Georg Brandl | 2007-08-31 | 1 | -21/+14 |
|
|
* | Changed signature of string.Formatter.get_field, per suggestion by | Eric Smith | 2007-08-31 | 1 | -7/+5 |
|
|
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 | 1 | -1/+1 |
|
|
* | Revert r57685 (weird merge result). | Collin Winter | 2007-08-29 | 1 | -1/+0 |
|
|
* | (no commit message) | Collin Winter | 2007-08-29 | 1 | -0/+1 |
|
|
* | Modified parsing of format strings, so that we always return | Eric Smith | 2007-08-29 | 1 | -4/+13 |
|
|
* | Simplified tuple returned by string._formatter_parser to only have | Eric Smith | 2007-08-28 | 1 | -24/+58 |
|
|
* | PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico... | Eric Smith | 2007-08-27 | 1 | -6/+4 |
|
|
* | PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje... | Eric Smith | 2007-08-26 | 1 | -7/+35 |
|
|
* | Implementation of PEP 3101, Advanced String Formatting. | Eric Smith | 2007-08-25 | 1 | -0/+39 |
|
|
* | Remove string.{letters,lowercase,uppercase}. | Martin v. Löwis | 2007-08-14 | 1 | -6/+3 |
|
|
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 | 1 | -7/+4 |
|
|
* | Merged revisions 55342-55406 via svnmerge from | Guido van Rossum | 2007-05-17 | 1 | -11/+0 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -1/+1 |
|
|
* | Remove functions in string module that are also string methods. Also remove: | Neal Norwitz | 2007-04-17 | 1 | -322/+2 |
|
|
* | Implement PEP 3115 -- new metaclass syntax and semantics. | Guido van Rossum | 2007-03-18 | 1 | -2/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -1/+1 |
|
|
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -1/+0 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -3/+3 |
|
|
* | Remove outdated references to the regsub module. | Raymond Hettinger | 2004-12-07 | 1 | -3/+2 |
|
|
* | SF patch #1056967, changes the semantics of Template.safe_substitute() to not | Barry Warsaw | 2004-11-01 | 1 | -1/+1 |
|
|
* | Invalid patterns to substitute and safe_substitute would crash since pattern | Neal Norwitz | 2004-10-17 | 1 | -2/+4 |
|
|
* | Make the regex pattern easier to read, understand, and modify | Raymond Hettinger | 2004-09-26 | 1 | -4/+6 |
|
|
* | At the cost of a modest (but useful in its own right) change in the semantics | Barry Warsaw | 2004-09-18 | 1 | -8/+6 |
|
|
* | Whitespace normalization. | Tim Peters | 2004-09-16 | 1 | -1/+1 |
|
|
* | Make the hint about the None default less ambiguous. | Walter Dörwald | 2004-09-14 | 1 | -1/+1 |
|
|
* | Enhance the docstrings for unicode.split() and string.split() | Walter Dörwald | 2004-09-14 | 1 | -1/+1 |
|
|
* | Fix small bugs in Template code. | Raymond Hettinger | 2004-09-14 | 1 | -7/+12 |
|
|
* | Raymond's good suggestion to re-order the tests in the convert() helper so the | Barry Warsaw | 2004-09-13 | 1 | -13/+16 |
|
|
* | substitute(), safe_substitute(): Paul Moore provides a better hack for dealing | Barry Warsaw | 2004-09-13 | 1 | -11/+19 |
|
|
* | Accepted Raymond's patch to combine mapping and keyword arguments, with slight | Barry Warsaw | 2004-09-13 | 1 | -5/+32 |
|
|
* | Template: remove __slots__ since that interferes with the ability to mix in | Barry Warsaw | 2004-09-10 | 1 | -1/+0 |
|
|
* | __slots__ went missing from Template. | Raymond Hettinger | 2004-09-10 | 1 | -0/+1 |
|
|
* | Many updates to PEP 292 templates. Summary: | Barry Warsaw | 2004-09-10 | 1 | -31/+54 |
|
|
* | Minor improvements to the template code. | Raymond Hettinger | 2004-08-26 | 1 | -18/+15 |
|
|
* | PEP 292 classes Template and SafeTemplate are added to the string module. | Barry Warsaw | 2004-08-25 | 1 | -34/+106 |
|
|
* | Add rsplit method for str and unicode builtin types. | Hye-Shik Chang | 2003-12-15 | 1 | -0/+12 |
|
|
* | Add optional fillchar argument to ljust(), rjust(), and center() string methods. | Raymond Hettinger | 2003-11-26 | 1 | -12/+12 |
|
|
* | tweak the docstring to not be so focused on 1.6. | Skip Montanaro | 2003-10-03 | 1 | -5/+5 |
|
|
* | Attempt to make all the various string *strip methods the same. | Neal Norwitz | 2003-04-10 | 1 | -9/+10 |
|
|