summaryrefslogtreecommitdiff
path: root/Modules/stropmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-2/+2
* On 17-Mar-2000, Marc-Andre Lemburg said:Barry Warsaw2000-03-201-1/+1
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-12/+12
* split() docstring: Made signature and description for the firstFred Drake1999-11-041-3/+3
* In atoi(), don't use isxdigit() to test whether the last characterGuido van Rossum1999-02-221-1/+1
* expandtabs__doc__: blank line which was not terminated with \n\ causedBarry Warsaw1999-01-261-1/+0
* A gift from Fredrik Lundh: fast C implementation of expandtabs().Guido van Rossum1999-01-251-0/+75
* Remove prototypes for PyOS_strto[u]l -- Chris Herborth.Guido van Rossum1998-12-101-3/+0
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Add a missing DECREF in an error exit. Submitted by Jonathan Giddy.Guido van Rossum1998-10-191-0/+1
* Use the t# format where appropriate. Greg Stein.Guido van Rossum1998-10-081-13/+13
* Make gcc -Wall happy.Guido van Rossum1998-10-071-1/+1
* Andrew Dalke's implementation of string.count().Guido van Rossum1998-10-061-0/+47
* Better error messages when raising ValueError for int literals. (TheGuido van Rossum1998-08-041-8/+3
* Make sure that at least one digit has been consumed in atoi().Guido van Rossum1998-07-251-0/+4
* Make sure that no use of a function pointer gotten from aGuido van Rossum1998-05-221-3/+5
* strop_replace(): balk if the pattern string is empty.Guido van Rossum1998-05-141-0/+4
* Check for boundary errors in [r]find -- find("x", "", 2) should return -1.Guido van Rossum1998-03-241-2/+2
* Forgot to return NULL in joinfields() when a type error was detectedGuido van Rossum1998-02-061-1/+3
* Oops, big glitch. Charles had put a 1 in the column for argument listGuido van Rossum1997-12-301-8/+8
* Oops, the last checkin left a blank line in a string literal.Guido van Rossum1997-12-301-1/+1
* Minor editing corrections.Guido van Rossum1997-12-291-5/+6
* Added doc string, provided by Charles Waldman (with some reformattingGuido van Rossum1997-12-291-29/+162
* split_whitespace(): Make sure delimiter is stripped from the beginningBarry Warsaw1997-12-021-1/+4
* mymemreplace(), strop_replace(): Add support for optional 4th argumentBarry Warsaw1997-11-291-4/+12
* Keep gcc -Wall happy.Guido van Rossum1997-04-291-1/+1
* Added replace() implementation by Perry Stoll (debugged and reformatted by me).Guido van Rossum1997-04-021-1/+167
* Add optional 4th argument to [r]find and [r]index (end of slice).Guido van Rossum1997-03-141-9/+27
* Changes for Lee Busby's SIGFPE patch set.Guido van Rossum1997-02-141-0/+2
* New strop_joinfields implementation, highly optimized for Lists. AllBarry Warsaw1997-01-061-60/+82
* Rewrote translate() as follows:Guido van Rossum1997-01-061-28/+52
* strop_upper(), strop_lower(): shared code version caused to much of aBarry Warsaw1997-01-031-27/+65
* Several changes:Barry Warsaw1997-01-031-142/+106
* Greatly renamed.Barry Warsaw1996-12-091-178/+181
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-3/+3
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-13/+20
* Replace all uses of strncmp (in split, find, rfind) with memcmp, soGuido van Rossum1996-10-041-3/+3
* Add text of argument to errors for atoi(), atol(), atof().Guido van Rossum1996-09-111-5/+25
* Raise ValueError on empty string passed into atoi(), atol(), atof().Guido van Rossum1996-08-211-0/+12
* Remove some unused variables.Guido van Rossum1996-08-191-9/+0
* Added lstrip() and rstrip().Guido van Rossum1996-08-081-17/+93
* Added 3rd optional argument to translate(), a string of characters to delete.Guido van Rossum1996-07-231-11/+60
* Test for zero-length argument in capitalize().Guido van Rossum1996-06-171-1/+1
* added capitalize()Guido van Rossum1996-06-121-0/+45
* added strop.translate(s, table)Guido van Rossum1995-09-131-0/+30
* unified join(fields), split(fields)Guido van Rossum1995-05-031-12/+20
* fix stupid bug in strip and splitGuido van Rossum1995-02-141-2/+2
* use Py_CHARMASKGuido van Rossum1995-02-101-14/+10
* Added 1995 to copyright message.Guido van Rossum1995-01-041-2/+2
* * various modules: #include "Python.h" and remove most remporaryGuido van Rossum1994-09-141-8/+4