summaryrefslogtreecommitdiff
path: root/Lib/string.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-241-3/+23
* Issue #13598: Add auto-numbering of replacement fields to string.Formatter.Eric V. Smith2014-04-141-2/+21
* Merge #13579: teach string.Formatter about 'a'.R David Murray2012-08-191-4/+6
|\
| * #13579: teach string.Formatter about 'a'.R David Murray2012-08-191-4/+6
* | #13012: use splitlines(keepends=True/False) instead of splitlines(0/1).Ezio Melotti2011-09-281-1/+1
* | Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-261-3/+3
* | Factor-out common code for helper classes.Raymond Hettinger2011-02-221-19/+3
|/
* #9418: first step of moving private string methods to _string module.Georg Brandl2010-10-141-4/+6
* Issue #1686: Fix string.Template when overriding the pattern attribute.Florent Xicluna2010-09-181-9/+3
* typoFlorent Xicluna2010-09-061-2/+2
* #6630: allow customizing flags for compiling string.Template.idpattern.Georg Brandl2010-07-291-1/+2
* Merged revisions 75070 via svnmerge fromEzio Melotti2009-09-261-4/+6
* remove string.maketransBenjamin Peterson2009-06-281-22/+0
* #4351: more appropriate DeprecationWarning stacklevelsPhilip Jenvey2009-05-081-1/+1
* Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecateGeorg Brandl2009-04-121-0/+3
* #4361: fix string.py docstring, clarify that only ASCII characters are in its...Georg Brandl2008-11-221-9/+9
* Merged revisions 67154,67157-67159,67175-67176,67189,67224-67227,67234 via sv...Benjamin Peterson2008-11-161-3/+2
* Rename buffer -> bytearray.Guido van Rossum2007-11-211-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-3/+3
* Changed some ValueError's to KeyError and IndexError.Eric Smith2007-09-041-3/+13
* Removed used_args param from string.Formatter.get_field. It was left in by m...Eric Smith2007-09-021-4/+2
* string.maketrans() now produces translation tables for bytes.translate() -- w...Georg Brandl2007-08-311-21/+14
* Changed signature of string.Formatter.get_field, per suggestion byEric Smith2007-08-311-7/+5
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Revert r57685 (weird merge result).Collin Winter2007-08-291-1/+0
* (no commit message)Collin Winter2007-08-291-0/+1
* Modified parsing of format strings, so that we always returnEric Smith2007-08-291-4/+13
* Simplified tuple returned by string._formatter_parser to only haveEric Smith2007-08-281-24/+58
* PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unico...Eric Smith2007-08-271-6/+4
* PEP 3101: Completed string.Formatter class. Reimplemented field_name to obje...Eric Smith2007-08-261-7/+35
* Implementation of PEP 3101, Advanced String Formatting.Eric Smith2007-08-251-0/+39
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-141-6/+3
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-7/+4
* Merged revisions 55342-55406 via svnmerge fromGuido van Rossum2007-05-171-11/+0
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-1/+1
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-322/+2
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-2/+1
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-1/+0
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-3/+3
* Remove outdated references to the regsub module.Raymond Hettinger2004-12-071-3/+2
* SF patch #1056967, changes the semantics of Template.safe_substitute() to notBarry Warsaw2004-11-011-1/+1
* Invalid patterns to substitute and safe_substitute would crash since patternNeal Norwitz2004-10-171-2/+4
* Make the regex pattern easier to read, understand, and modifyRaymond Hettinger2004-09-261-4/+6
* At the cost of a modest (but useful in its own right) change in the semanticsBarry Warsaw2004-09-181-8/+6
* Whitespace normalization.Tim Peters2004-09-161-1/+1
* Make the hint about the None default less ambiguous.Walter Dörwald2004-09-141-1/+1
* Enhance the docstrings for unicode.split() and string.split()Walter Dörwald2004-09-141-1/+1
* Fix small bugs in Template code.Raymond Hettinger2004-09-141-7/+12
* Raymond's good suggestion to re-order the tests in the convert() helper so theBarry Warsaw2004-09-131-13/+16