summaryrefslogtreecommitdiff
path: root/Lib/string.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 84470-84471,84566-84567,84759 via svnmerge fromFlorent Xicluna2010-09-131-1/+1
* Issue5416 - Revert a documentatin change made to explain replace on negative ...Senthil Kumaran2010-09-081-6/+5
* Fix Issue5416 - explain negative value of maxplit in str.replace.Senthil Kumaran2010-08-091-1/+2
* #7000: document "sep" in capwords. Add a few testsEzio Melotti2009-09-261-4/+6
* fix commentBenjamin Peterson2008-11-091-3/+2
* Replace all map(None, a) with list(a).Georg Brandl2008-07-181-1/+1
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-171-0/+112
* SF 1193128: Let str.translate(None) be an identity transformationRaymond Hettinger2007-04-121-1/+1
* Add a type.__init__() method that enforces the same signature asGuido van Rossum2007-03-231-3/+1
* - Bug #1683368: The object.__init__() and object.__new__() methods areGuido van Rossum2007-03-231-1/+3
* Cookie.py shouldn't "bogusly" use string._idmap.Georg Brandl2006-08-141-1/+0
* Fix bug in passing tuples to string.Template. All other values (with workingThomas Wouters2006-07-051-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
* substitute(), safe_substitute(): Paul Moore provides a better hack for dealingBarry Warsaw2004-09-131-11/+19
* Accepted Raymond's patch to combine mapping and keyword arguments, with slightBarry Warsaw2004-09-131-5/+32
* Template: remove __slots__ since that interferes with the ability to mix inBarry Warsaw2004-09-101-1/+0
* __slots__ went missing from Template.Raymond Hettinger2004-09-101-0/+1
* Many updates to PEP 292 templates. Summary:Barry Warsaw2004-09-101-31/+54
* Minor improvements to the template code.Raymond Hettinger2004-08-261-18/+15
* PEP 292 classes Template and SafeTemplate are added to the string module.Barry Warsaw2004-08-251-34/+106
* Add rsplit method for str and unicode builtin types.Hye-Shik Chang2003-12-151-0/+12
* Add optional fillchar argument to ljust(), rjust(), and center() string methods.Raymond Hettinger2003-11-261-12/+12
* tweak the docstring to not be so focused on 1.6.Skip Montanaro2003-10-031-5/+5
* Attempt to make all the various string *strip methods the same.Neal Norwitz2003-04-101-9/+10
* Update the docstring to match the code. Will backport.Neal Norwitz2002-11-141-1/+3
* Make strip behave as documented. Will backport to 2.2.3.Martin v. Löwis2002-11-081-2/+2
* Convert empty string literal to string. Speed up creation of idmap.Martin v. Löwis2002-10-141-3/+4
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-5/+1
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-151-8/+6
* [Bug #536241] string.zfill() produces mangled output for a Unicode string.Andrew M. Kuchling2002-03-291-8/+8
* string.split() docstring described the interpretation of the maxsplitFred Drake2002-01-301-3/+3
* Added the constants ascii_letters, ascii_lowercase, and ascii_uppercaseFred Drake2001-07-201-0/+3
* removed __all__ from several modulesSkip Montanaro2001-02-181-6/+0
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+6
* Nuke accurate but confusing and unhelpful comments about split vs splitfields.Tim Peters2001-02-091-1/+0
* String method conversion.Eric S. Raymond2001-02-091-1/+1
* Whitespace normalization.Tim Peters2001-01-151-1/+1
* Make string.translate(s, table) work for Unicode s. Two things areGuido van Rossum2000-12-191-4/+11
* Fix serious typo!Fred Drake2000-09-181-1/+3
* Richard Mortier <rmm1002@users.sourceforge.net>:Fred Drake2000-09-181-0/+2
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1