1. 8c72eae SF patch #1056967, changes the semantics of Template.safe_substitute() to not by Barry Warsaw · 20 years ago
  2. 33db656 Update Template/PEP 292 documentation to current implementation. by Barry Warsaw · 20 years ago
  3. 785c65c Markup nits. by Raymond Hettinger · 20 years ago
  4. 08b07de Ah whoops, we didn't turn string into a package (thanks Neal!) by Barry Warsaw · 20 years ago
  5. 8bee761 PEP 292 classes Template and SafeTemplate are added to the string module. by Barry Warsaw · 20 years ago
  6. b0c319a Patch #993187: Make rstrip doc similar to lstrip. Backported to 2.3. by Martin v. Löwis · 20 years ago
  7. 07973da Modified string.split documentation to reflect behaviour of splitting emtpy string. Closes SF bug #811604 by Nicholas Bastin · 20 years ago
  8. 32fef9f fix truly evil markup typo by Fred Drake · 21 years ago
  9. c6f066f Update documentations for str.rsplit() with Alex Martelli's rewrite. by Hye-Shik Chang · 21 years ago
  10. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  11. 8bafb2a Patch #843088: Fix typos. Backported to 2.3. by Martin v. Löwis · 21 years ago
  12. 46f681c Discussion of signatures for unicode.translate() and str.translate() by Raymond Hettinger · 21 years ago
  13. 5c5fca9 SF bug #706546: u''.translate not documented by Raymond Hettinger · 21 years ago
  14. a6bdf2a Oops, missed updating doc to correct version for split by Neal Norwitz · 21 years ago
  15. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  16. b7c1895 Fix typo reported by Paul Clifford. by Fred Drake · 22 years ago
  17. 473f46a Make the docs for string.capitalize() match those of str.capitalize() by Fred Drake · 22 years ago
  18. de02bcb Apply patch diff.txt from SF feature request http://www.python.org/sf/444708 by Walter Dörwald · 22 years ago
  19. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  20. 960fdf9 Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase by Fred Drake · 23 years ago
  21. e9735ac Remove all mentions of the strop module -- it has been pronounced Evil. by Fred Drake · 23 years ago
  22. be06302 Fix doubled word by Andrew M. Kuchling · 24 years ago
  23. 15f0666 Added deprecation notices to atof(), atoi(), and atol(), recommending by Fred Drake · 24 years ago
  24. fffe5db Fixed a number of small problems reported by Detlef Lannert by Fred Drake · 24 years ago
  25. 480abc2 Document the "printable" and "punctuation" constants added to the string module. by Fred Drake · 24 years ago
  26. 1b194f92 Add a reference to the material on string methods. by Fred Drake · 24 years ago
  27. a4ca07c Minor grammatical fix by Andrew M. Kuchling · 24 years ago
  28. 0682be4 letters: by Fred Drake · 24 years ago
  29. a7ce52b0 Typo reported by Gerry Wiener <wiener@rap.ucar.edu>: by Fred Drake · 25 years ago
  30. ffbe687 Make internal module references hyperlinks wherever it makes sense. by Fred Drake · 25 years ago
  31. 70a66c9 Add notes to __builtin__.float() and string.atof() that the NaN and Inf by Fred Drake · 26 years ago
  32. 951eea4 atof() description: Add information about accepting 'NaN' to produce by Fred Drake · 26 years ago
  33. 9700e9b Document the default for tabsize in expandtabs(). by Guido van Rossum · 26 years ago
  34. e848976 Clarify descriptions of some operations; it's not always clear that by Fred Drake · 26 years ago
  35. 295da24 New section header style. by Fred Drake · 26 years ago
  36. b91e934 Adjusted to use the new module synopsis support macros. by Fred Drake · 26 years ago
  37. a3eebe6 Add warning about use of lowercase/uppercase with maketrans(). by Guido van Rossum · 26 years ago
  38. 8e729ec Caught a few more spurious \setindexsubitem macros.... by Fred Drake · 26 years ago
  39. 3a0351c Remove all uses of \sectcode; we can now use logical markup everywhere. by Fred Drake · 26 years ago
  40. d275de9 Remove obsolete lines like this: by Fred Drake · 26 years ago
  41. cce1090 Change "\," to just "," in function signatures. This is easier to maintain, by Fred Drake · 26 years ago
  42. 1947991 Remove all \bcode / \ecode cruft; this is no longer needed. See previous by Fred Drake · 27 years ago
  43. ad37e9e Clarify that capwords() removes leading/trailing whitespace. by Guido van Rossum · 27 years ago
  44. 6d2bdb6 Fixed index module reference. by Fred Drake · 27 years ago
  45. 828a0bd count() now has a 4th parameter too. Also rephrased the docs for find by Guido van Rossum · 27 years ago
  46. e47da0a AMK's megapatch: by Guido van Rossum · 27 years ago
  47. 0fa066b Grammar (AMK). by Guido van Rossum · 27 years ago
  48. 740eb82 Add cross-refs for int() to atoi() etc. by Guido van Rossum · 27 years ago
  49. c8a80cd Added docs for replace() and replace1(). by Guido van Rossum · 27 years ago
  50. 7b7c578 Add optional 4th argument to [r]find and [r]index (end of slice). by Guido van Rossum · 27 years ago
  51. e5e55d7 Added capitalize, capwords, lstrip, rstrip, and optional 3rd argument by Guido van Rossum · 28 years ago
  52. f4d0d57 Added maketrans() and optional 3rd arg to translate() (chars to delete). by Guido van Rossum · 28 years ago
  53. 264302d atol supports trailing l/L if base is 0 by Guido van Rossum · 29 years ago
  54. f65f278 added string.translate(s, table) by Guido van Rossum · 29 years ago
  55. 96628a9 typos, layout and other small things by Guido van Rossum · 29 years ago
  56. 470be14 mass changes; fix titles; add examples; correct typos; clarifications; by Guido van Rossum · 29 years ago
  57. 6bb1adc small changes by Soren Larsen by Guido van Rossum · 29 years ago
  58. 0bf4d89 add warning about strop by Guido van Rossum · 29 years ago
  59. 8675115 a few typographical changes (e.g. -- => ---) and lots of new stuff in the WWW chapter by Guido van Rossum · 29 years ago
  60. 2828e9d * Doc/libstring.tex (section{Standard Module \sectcode{string}}): by Guido van Rossum · 30 years ago
  61. 16d6e71 Lots of small corrections by Andrew Kuchling (plus all new rotor docs) by Guido van Rossum · 30 years ago
  62. ab3a250 libsocket.tex: send[to] returns nbytes. by Guido van Rossum · 30 years ago
  63. 5fdeeea Restructured library documentation by Guido van Rossum · 31 years ago