1. c501583 Make gcc -Wall happy. by Guido van Rossum · 26 years ago
  2. d5bcf9a Andrew Dalke's implementation of string.count(). by Guido van Rossum · 26 years ago
  3. 923fece5 Better error messages when raising ValueError for int literals. (The by Guido van Rossum · 26 years ago
  4. 76310fc Make sure that at least one digit has been consumed in atoi(). by Guido van Rossum · 26 years ago
  5. 7df115d Make sure that no use of a function pointer gotten from a by Guido van Rossum · 26 years ago
  6. 4ccda15 strop_replace(): balk if the pattern string is empty. by Guido van Rossum · 26 years ago
  7. 031c631 Check for boundary errors in [r]find -- find("x", "", 2) should return -1. by Guido van Rossum · 26 years ago
  8. 1ad1b3f Forgot to return NULL in joinfields() when a type error was detected by Guido van Rossum · 26 years ago
  9. 74608f8 Oops, big glitch. Charles had put a 1 in the column for argument list by Guido van Rossum · 27 years ago
  10. 786205e Oops, the last checkin left a blank line in a string literal. by Guido van Rossum · 27 years ago
  11. 23e21e7 Minor editing corrections. by Guido van Rossum · 27 years ago
  12. 983c930 Added doc string, provided by Charles Waldman (with some reformatting by Guido van Rossum · 27 years ago
  13. 93be92d split_whitespace(): Make sure delimiter is stripped from the beginning by Barry Warsaw · 27 years ago
  14. f577c08 mymemreplace(), strop_replace(): Add support for optional 4th argument by Barry Warsaw · 27 years ago
  15. 1ed5e57 Keep gcc -Wall happy. by Guido van Rossum · 27 years ago
  16. 101923b Added replace() implementation by Perry Stoll (debugged and reformatted by me). by Guido van Rossum · 27 years ago
  17. 7b7c578 Add optional 4th argument to [r]find and [r]index (end of slice). by Guido van Rossum · 27 years ago
  18. 52fa3a6 Changes for Lee Busby's SIGFPE patch set. by Guido van Rossum · 27 years ago
  19. d4ff1b9 New strop_joinfields implementation, highly optimized for Lists. All by Barry Warsaw · 28 years ago
  20. e0548b8 Rewrote translate() as follows: by Guido van Rossum · 28 years ago
  21. 04d2d15 strop_upper(), strop_lower(): shared code version caused to much of a by Barry Warsaw · 28 years ago
  22. e8fc29c Several changes: by Barry Warsaw · 28 years ago
  23. f525601 Greatly renamed. by Barry Warsaw · 28 years ago
  24. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  25. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  26. a0ca4c4 Replace all uses of strncmp (in split, find, rfind) with memcmp, so by Guido van Rossum · 28 years ago
  27. c35f933 Add text of argument to errors for atoi(), atol(), atof(). by Guido van Rossum · 28 years ago
  28. 171191e Raise ValueError on empty string passed into atoi(), atol(), atof(). by Guido van Rossum · 28 years ago
  29. 8609868 Remove some unused variables. by Guido van Rossum · 28 years ago
  30. 7999a5c Added lstrip() and rstrip(). by Guido van Rossum · 28 years ago
  31. ed7253c Added 3rd optional argument to translate(), a string of characters to delete. by Guido van Rossum · 28 years ago
  32. 529c963 Test for zero-length argument in capitalize(). by Guido van Rossum · 28 years ago
  33. 2745753 added capitalize() by Guido van Rossum · 28 years ago
  34. a3127e8 added strop.translate(s, table) by Guido van Rossum · 29 years ago
  35. 009e79b unified join(fields), split(fields) by Guido van Rossum · 29 years ago
  36. ee1813d fix stupid bug in strip and split by Guido van Rossum · 29 years ago
  37. 7f7f274 use Py_CHARMASK by Guido van Rossum · 29 years ago
  38. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  39. 602099a * various modules: #include "Python.h" and remove most remporary by Guido van Rossum · 30 years ago
  40. 5806a4f * Modules/stropmodule.c: implement find/rfind instead of by Guido van Rossum · 30 years ago
  41. c65a525 * Modules/{Setup.in,Makefile.pre.in}: renamed some modules to by Guido van Rossum · 30 years ago
  42. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  43. 572d2d9 Fix memory leaks in join & joinfields by Guido van Rossum · 31 years ago
  44. ee9012f Added rindex(). index() and rindex() interpret negative start index by Guido van Rossum · 31 years ago
  45. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  46. d96ec44 Bug fix: check whether call succeeded *after* the call. by Sjoerd Mullender · 31 years ago
  47. e22e644 * config.c: different default PYTHONPATH for MS-DOS by Guido van Rossum · 31 years ago
  48. d05eb8b stropmodule.c: use C isspace(c) to test for whitespace; add by Guido van Rossum · 31 years ago
  49. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  50. c89705d * config.c: Added audioop to lists. by Guido van Rossum · 32 years ago
  51. 5c85062 Makefile uses $> more often; cgen supports filename argument; added by Guido van Rossum · 32 years ago
  52. e270b43 Re-implement some operations from string.py in C, for speed. by Guido van Rossum · 32 years ago