aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/string.py
Commit message (Expand)AuthorAge
...
* Make strip behave as documented. Will backport to 2.2.3.Martin v. Löwis2002-11-08
* Convert empty string literal to string. Speed up creation of idmap.Martin v. Löwis2002-10-14
* Remove uses of the string and types modules:Walter Dörwald2002-06-03
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-15
* [Bug #536241] string.zfill() produces mangled output for a Unicode string.Andrew M. Kuchling2002-03-29
* string.split() docstring described the interpretation of the maxsplitFred Drake2002-01-30
* Added the constants ascii_letters, ascii_lowercase, and ascii_uppercaseFred Drake2001-07-20
* removed __all__ from several modulesSkip Montanaro2001-02-18
* bunch more __all__ listsSkip Montanaro2001-02-15
* Nuke accurate but confusing and unhelpful comments about split vs splitfields.Tim Peters2001-02-09
* String method conversion.Eric S. Raymond2001-02-09
* Whitespace normalization.Tim Peters2001-01-15
* Make string.translate(s, table) work for Unicode s. Two things areGuido van Rossum2000-12-19
* Fix serious typo!Fred Drake2000-09-18
* Richard Mortier <rmm1002@users.sourceforge.net>:Fred Drake2000-09-18
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-16
* Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>:Fred Drake2000-07-03
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-05
* Marc-Andre Lemburg: the maxsplit argument for split() and replace()Guido van Rossum2000-03-10
* Detabify.Fred Drake2000-02-10
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-04
* split() docstring: Made signature and description for the firstFred Drake1999-11-04
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-12
* Fix PR#31 -- zfill() mishandles empty string.Guido van Rossum1999-10-11
* As Tim Peters points out, ``from string import *'' should not set re to None.Guido van Rossum1998-04-20
* Strip argument to atol and atof to match what strop does better.Guido van Rossum1998-03-30
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-26
* Minor editing corrections.Guido van Rossum1997-12-29
* Added doc string, provided by Charles Waldman (with some reformattingGuido van Rossum1997-12-29
* At Barry's suggestion, plug the security leak by using an emptyGuido van Rossum1997-12-10
* Since this module is used as a fallback in case no built-in modulesGuido van Rossum1997-12-10
* In string.split(), honor maxsplit (if > 0).Guido van Rossum1997-12-01
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-22
* Add optional 4th argument to count(), matching find() etc.Guido van Rossum1997-10-20
* Changed my mind on replace().Guido van Rossum1997-04-02
* Added new functions replace() and replace1().Guido van Rossum1997-03-25
* Add optional 4th argument to [r]find and [r]index (end of slice).Guido van Rossum1997-03-14
* Use correct separator for capwords(s, sep).Guido van Rossum1996-08-26
* Add optional separator character to capwords(), for completeness.Guido van Rossum1996-08-20
* Add optional third parameter to split() and splitfields(), giving theGuido van Rossum1996-08-08
* Added 3rd optional argument to translate(), a string of characters to delete.Guido van Rossum1996-07-23
* Added capitalize() and capwords().Guido van Rossum1996-06-11
* add translate() -- which was in strop per release 1.3Guido van Rossum1996-05-28
* default tabsize to 8Guido van Rossum1995-08-10
* make split and splitfields, join and joinfields synonymsGuido van Rossum1995-06-22
* add dummy base to atoi/atol; careful about negative start indices in find/countGuido van Rossum1995-03-14
* * Lib/string.py: find/rfind is now the main implementation andGuido van Rossum1994-08-17
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-01
* * string.py: added rindex(), rfind(); changed index() to interpretGuido van Rossum1993-11-08
* * profile.py, pdb.py: added help() functionGuido van Rossum1993-10-22