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