summaryrefslogtreecommitdiffstats
path: root/Lib/string.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>:Fred Drake2000-07-031-40/+9
* Marc-Andre's third try at this bulk patch seems to work (except thatGuido van Rossum2000-04-051-33/+6
* Marc-Andre Lemburg: the maxsplit argument for split() and replace()Guido van Rossum2000-03-101-4/+4
* Detabify.Fred Drake2000-02-101-28/+28
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-7/+5
* split() docstring: Made signature and description for the firstFred Drake1999-11-041-2/+2
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-430/+275
* Fix PR#31 -- zfill() mishandles empty string.Guido van Rossum1999-10-111-1/+1
* As Tim Peters points out, ``from string import *'' should not set re to None.Guido van Rossum1998-04-201-9/+11
* Strip argument to atol and atof to match what strop does better.Guido van Rossum1998-03-301-2/+2
* A few lines were indented using spaces instead of tabs -- fix them.Guido van Rossum1998-03-261-4/+5
* Minor editing corrections.Guido van Rossum1997-12-291-13/+13
* Added doc string, provided by Charles Waldman (with some reformattingGuido van Rossum1997-12-291-0/+223
* At Barry's suggestion, plug the security leak by using an emptyGuido van Rossum1997-12-101-3/+6
* Since this module is used as a fallback in case no built-in modulesGuido van Rossum1997-12-101-3/+7
* In string.split(), honor maxsplit (if > 0).Guido van Rossum1997-12-011-2/+8
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-221-3/+6
* Add optional 4th argument to count(), matching find() etc.Guido van Rossum1997-10-201-7/+14
* Changed my mind on replace().Guido van Rossum1997-04-021-12/+2
* Added new functions replace() and replace1().Guido van Rossum1997-03-251-0/+15
* Add optional 4th argument to [r]find and [r]index (end of slice).Guido van Rossum1997-03-141-10/+26
* Use correct separator for capwords(s, sep).Guido van Rossum1996-08-261-1/+1
* Add optional separator character to capwords(), for completeness.Guido van Rossum1996-08-201-2/+2
* Add optional third parameter to split() and splitfields(), giving theGuido van Rossum1996-08-081-4/+22
* Added 3rd optional argument to translate(), a string of characters to delete.Guido van Rossum1996-07-231-9/+23
* Added capitalize() and capwords().Guido van Rossum1996-06-111-0/+10
* add translate() -- which was in strop per release 1.3Guido van Rossum1996-05-281-0/+8
* default tabsize to 8Guido van Rossum1995-08-101-1/+1
* make split and splitfields, join and joinfields synonymsGuido van Rossum1995-06-221-6/+8
* add dummy base to atoi/atol; careful about negative start indices in find/countGuido van Rossum1995-03-141-5/+11
* * Lib/string.py: find/rfind is now the main implementation andGuido van Rossum1994-08-171-63/+41
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-24/+51
* * string.py: added rindex(), rfind(); changed index() to interpretGuido van Rossum1993-11-081-0/+27
* * profile.py, pdb.py: added help() functionGuido van Rossum1993-10-221-1/+33
* * pdb.py: set 'privileged' property when evaluating expressionsGuido van Rossum1993-07-291-1/+4
* * ftplib.py: added abort() command (sends oob data).Guido van Rossum1993-05-241-2/+9
* * Fix bug in tzparse.py for DST timezoneGuido van Rossum1993-03-291-1/+3
* * mainloop.py: added facility for calling select(). Also addedGuido van Rossum1992-11-261-4/+1
* * change default line numbers for 'list' in pdb.pyGuido van Rossum1992-11-051-3/+11
* Misc changes and new modules. whrandom is "objectified". SOCKET.pyGuido van Rossum1992-10-181-0/+12
* New module regsub contains sub(), gsub() and split() as in nawk.Guido van Rossum1992-09-201-3/+2