1. 40fd0e8 Issue #23671: string.Template now allows to specify the "self" parameter as by Serhiy Storchaka · 10 years ago
  2. ff05e52 Issue #1686: Fix string.Template when overriding the pattern attribute. by Florent Xicluna · 14 years ago
  3. d928b6a #13579: minimize code base drift for 'a' string.Formatter change. by R David Murray · 12 years ago
  4. 9b90cd1 Merged revisions 84470-84471,84566-84567,84759 via svnmerge from by Florent Xicluna · 14 years ago
  5. a240cb1 Issue5416 - Revert a documentatin change made to explain replace on negative value. by Senthil Kumaran · 14 years ago
  6. c0548c9 Fix Issue5416 - explain negative value of maxplit in str.replace. by Senthil Kumaran · 14 years ago
  7. 9aac245 #7000: document "sep" in capwords. Add a few tests by Ezio Melotti · 15 years ago
  8. b7c95ce fix comment by Benjamin Peterson · 16 years ago
  9. 74bbc79 Replace all map(None, a) with list(a). by Georg Brandl · 16 years ago
  10. a9f7d62 Backport of PEP 3101, Advanced String Formatting, from py3k. by Eric Smith · 17 years ago
  11. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  12. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 18 years ago
  13. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 18 years ago
  14. d76bd69 Cookie.py shouldn't "bogusly" use string._idmap. by Georg Brandl · 18 years ago
  15. add1911 Fix bug in passing tuples to string.Template. All other values (with working by Thomas Wouters · 18 years ago
  16. 57aef9c Remove outdated references to the regsub module. by Raymond Hettinger · 20 years ago
  17. 8c72eae SF patch #1056967, changes the semantics of Template.safe_substitute() to not by Barry Warsaw · 20 years ago
  18. 6627a96 Invalid patterns to substitute and safe_substitute would crash since pattern by Neal Norwitz · 20 years ago
  19. 55593c3 Make the regex pattern easier to read, understand, and modify by Raymond Hettinger · 20 years ago
  20. 17cb600 At the cost of a modest (but useful in its own right) change in the semantics by Barry Warsaw · 20 years ago
  21. c74298a Whitespace normalization. by Tim Peters · 20 years ago
  22. 065a32f Make the hint about the None default less ambiguous. by Walter Dörwald · 20 years ago
  23. 782afc5 Enhance the docstrings for unicode.split() and string.split() by Walter Dörwald · 20 years ago
  24. 6d19111 Fix small bugs in Template code. by Raymond Hettinger · 20 years ago
  25. b5c6b5b Raymond's good suggestion to re-order the tests in the convert() helper so the by Barry Warsaw · 20 years ago
  26. b6234a9 substitute(), safe_substitute(): Paul Moore provides a better hack for dealing by Barry Warsaw · 20 years ago
  27. 46b629c Accepted Raymond's patch to combine mapping and keyword arguments, with slight by Barry Warsaw · 20 years ago
  28. f43e8bd Template: remove __slots__ since that interferes with the ability to mix in by Barry Warsaw · 20 years ago
  29. 1f7d6a6 __slots__ went missing from Template. by Raymond Hettinger · 20 years ago
  30. 12827c1 Many updates to PEP 292 templates. Summary: by Barry Warsaw · 20 years ago
  31. 0d58e2b Minor improvements to the template code. by Raymond Hettinger · 20 years ago
  32. 8bee761 PEP 292 classes Template and SafeTemplate are added to the string module. by Barry Warsaw · 20 years ago
  33. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  34. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  35. 0b87444 tweak the docstring to not be so focused on 1.6. by Skip Montanaro · 21 years ago
  36. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 22 years ago
  37. a4864a2 Update the docstring to match the code. Will backport. by Neal Norwitz · 22 years ago
  38. 1f04610 Make strip behave as documented. Will backport to 2.2.3. by Martin v. Löwis · 22 years ago
  39. 5357c65 Convert empty string literal to string. Speed up creation of idmap. by Martin v. Löwis · 22 years ago
  40. 65230a2 Remove uses of the string and types modules: by Walter Dörwald · 22 years ago
  41. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 23 years ago
  42. 102d120 [Bug #536241] string.zfill() produces mangled output for a Unicode string. by Andrew M. Kuchling · 23 years ago
  43. 1453754 string.split() docstring described the interpretation of the maxsplit by Fred Drake · 23 years ago
  44. 960fdf9 Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase by Fred Drake · 23 years ago
  45. 7834907 removed __all__ from several modules by Skip Montanaro · 24 years ago
  46. 0de6580 bunch more __all__ lists by Skip Montanaro · 24 years ago
  47. 6b6b39e Nuke accurate but confusing and unhelpful comments about split vs splitfields. by Tim Peters · 24 years ago
  48. e37340e String method conversion. by Eric S. Raymond · 24 years ago
  49. 495ad3c Whitespace normalization. by Tim Peters · 24 years ago
  50. 5aff775 Make string.translate(s, table) work for Unicode s. Two things are by Guido van Rossum · 24 years ago
  51. fd64c59 Fix serious typo! Add the new constants to the module docstring. by Fred Drake · 24 years ago
  52. 6b2320f Richard Mortier <rmm1002@users.sourceforge.net>: by Fred Drake · 24 years ago
  53. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  54. 046d272 Martin von Löwis <martin@loewis.home.cs.tu-berlin.de>: by Fred Drake · 24 years ago
  55. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 25 years ago
  56. 8f0c5a7 Marc-Andre Lemburg: the maxsplit argument for split() and replace() by Guido van Rossum · 25 years ago
  57. 857c4c3 Detabify. by Fred Drake · 25 years ago
  58. e7b146f The third and final doc-string sweep by Ka-Ping Yee. by Guido van Rossum · 25 years ago
  59. e4f1366 split() docstring: Made signature and description for the first by Fred Drake · 25 years ago
  60. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  61. 1b7aec3 Fix PR#31 -- zfill() mishandles empty string. by Guido van Rossum · 25 years ago
  62. 9a34523 As Tim Peters points out, ``from string import *'' should not set re to None. by Guido van Rossum · 27 years ago
  63. a6bb6be Strip argument to atol and atof to match what strop does better. by Guido van Rossum · 27 years ago
  64. 8ca8420 A few lines were indented using spaces instead of tabs -- fix them. by Guido van Rossum · 27 years ago
  65. 23e21e7 Minor editing corrections. by Guido van Rossum · 27 years ago
  66. 2003204 Added doc string, provided by Charles Waldman (with some reformatting by Guido van Rossum · 27 years ago
  67. d0753e2 At Barry's suggestion, plug the security leak by using an empty by Guido van Rossum · 27 years ago
  68. 90d62ab Since this module is used as a fallback in case no built-in modules by Guido van Rossum · 27 years ago
  69. 06ba34c In string.split(), honor maxsplit (if > 0). by Guido van Rossum · 27 years ago
  70. 9694fca Convert all remaining *simple* cases of regex usage to re usage. by Guido van Rossum · 27 years ago
  71. 1510565 Add optional 4th argument to count(), matching find() etc. by Guido van Rossum · 27 years ago
  72. 21aa0ef Changed my mind on replace(). by Guido van Rossum · 28 years ago
  73. 1eb9a81 Added new functions replace() and replace1(). by Guido van Rossum · 28 years ago
  74. 7b7c578 Add optional 4th argument to [r]find and [r]index (end of slice). by Guido van Rossum · 28 years ago
  75. f480c67 Use correct separator for capwords(s, sep). by Guido van Rossum · 28 years ago
  76. 34f1731 Add optional separator character to capwords(), for completeness. by Guido van Rossum · 28 years ago
  77. 306a8a6 Add optional third parameter to split() and splitfields(), giving the by Guido van Rossum · 28 years ago
  78. ed7253c Added 3rd optional argument to translate(), a string of characters to delete. by Guido van Rossum · 28 years ago
  79. 8775d8b Added capitalize() and capwords(). by Guido van Rossum · 28 years ago
  80. 2539528 add translate() -- which was in strop per release 1.3 by Guido van Rossum · 28 years ago
  81. 894a7bb default tabsize to 8 by Guido van Rossum · 29 years ago
  82. 2ab1992 make split and splitfields, join and joinfields synonyms by Guido van Rossum · 29 years ago
  83. 8c1688e add dummy base to atoi/atol; careful about negative start indices in find/count by Guido van Rossum · 30 years ago
  84. 710c352 * Lib/string.py: find/rfind is now the main implementation and by Guido van Rossum · 30 years ago
  85. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  86. e65cce5 * string.py: added rindex(), rfind(); changed index() to interpret by Guido van Rossum · 31 years ago
  87. e61fa0a * profile.py, pdb.py: added help() function by Guido van Rossum · 31 years ago
  88. 8e2ec56 * pdb.py: set 'privileged' property when evaluating expressions by Guido van Rossum · 31 years ago
  89. d316607 * ftplib.py: added abort() command (sends oob data). by Guido van Rossum · 31 years ago
  90. e7113b6 * Fix bug in tzparse.py for DST timezone by Guido van Rossum · 32 years ago
  91. 18fc569 * mainloop.py: added facility for calling select(). Also added by Guido van Rossum · 32 years ago
  92. c629d34 * change default line numbers for 'list' in pdb.py by Guido van Rossum · 32 years ago
  93. 2db9135 Misc changes and new modules. whrandom is "objectified". SOCKET.py by Guido van Rossum · 32 years ago
  94. 7a461e5 New module regsub contains sub(), gsub() and split() as in nawk. by Guido van Rossum · 32 years ago
  95. ae507a4 splitfields(s, '') is illegal by Guido van Rossum · 32 years ago
  96. 2d4aa4f Removed *.libs (now in ./sgi); by Guido van Rossum · 32 years ago
  97. 6ff2e90 Add function to expand tabs. by Guido van Rossum · 33 years ago
  98. a61ff7b New implementation method for case conversion. by Guido van Rossum · 33 years ago
  99. bdfcfcc New == syntax by Guido van Rossum · 33 years ago
  100. 333c2e0 A plus is also a sign! by Guido van Rossum · 33 years ago