summaryrefslogtreecommitdiff
path: root/Lib/stringold.py
Commit message (Expand)AuthorAgeFilesLines
* Replace all map(None, a) with list(a).Georg Brandl2008-07-181-1/+1
* Deprecate stringold for removal in 3.0.Brett Cannon2008-05-081-0/+3
* Remove outdated references to the regsub module.Raymond Hettinger2004-12-071-1/+0
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
* 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
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Untabify to pass the -tt test.Fred Drake2000-02-101-28/+28
* Mainlining the string_methods branch. See branch revision logBarry Warsaw1999-10-121-430/+275
* 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
* splitfields(s, '') is illegalGuido van Rossum1992-08-191-1/+5
* Removed *.libs (now in ./sgi);Guido van Rossum1992-08-061-2/+6
* Add function to expand tabs.Guido van Rossum1992-03-271-0/+13
* New implementation method for case conversion.Guido van Rossum1992-01-141-10/+8
* New == syntaxGuido van Rossum1992-01-011-4/+4
* A plus is also a sign!Guido van Rossum1991-08-161-2/+2
* Added join() and joinfields() functions.Guido van Rossum1991-04-071-9/+27
* Fix bugf in index -- last char would not be checked.Guido van Rossum1990-12-261-1/+1