1. ac1075a Document that encode() and decode() raise UnicodeError instead of ValueError. by Walter Dörwald · 20 years ago
  2. ecf7a52 link to the codecs page from the "".encode() description. by Skip Montanaro · 20 years ago
  3. 4a9b806 Document string methods that are locale-dependent. Fixes #935749. by Martin v. Löwis · 20 years ago
  4. 974ed7c - SF #962502: Add two more methods for unicode type; width() and by Hye-Shik Chang · 20 years ago
  5. f72de0f add note about the __name__ read-only attribute (closes SF bug #952212) by Fred Drake · 20 years ago
  6. 9168c70 SF Patch #912462: Relocate \end tag to the right place. by Hye-Shik Chang · 20 years ago
  7. 31017ae SF #904720: dict.update should take a 2-tuple sequence like dict.__init_ by Raymond Hettinger · 20 years ago
  8. 91f5cbe SF bug #872461: list.extend() described as experimental by Raymond Hettinger · 21 years ago
  9. 50e7a11 Correct misrepresentation of print (it uses str(), not `...` for by Guido van Rossum · 21 years ago
  10. 401d1e3 fix a variety of markup bugs by Fred Drake · 21 years ago
  11. 7c67cb8 markup fix by Fred Drake · 21 years ago
  12. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  13. c6f066f Update documentations for str.rsplit() with Alex Martelli's rewrite. by Hye-Shik Chang · 21 years ago
  14. 3ae811b Add rsplit method for str and unicode builtin types. by Hye-Shik Chang · 21 years ago
  15. 7245265 Add version changed doc for addition of fillchar to ljust/rjust/center by Neal Norwitz · 21 years ago
  16. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  17. f5f41bf * Checkin remaining documentation by Raymond Hettinger · 21 years ago
  18. 9885c93 Fix typo. by Raymond Hettinger · 21 years ago
  19. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  20. d22bb65 Avoid confusing name for the 3rd argument to str.replace(). by Fred Drake · 21 years ago
  21. 5b6150e markup fixes; this would not format by Fred Drake · 21 years ago
  22. 6828e18 Patch #825679: Clarify semantics of .isfoo on empty strings. Backported to 2.3. by Martin v. Löwis · 21 years ago
  23. 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
  24. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  25. 74c8e55 SF bug #804280: fromkeys is not listed in index by Raymond Hettinger · 21 years ago
  26. b67449d Fix spacing markup and other sundries. by Raymond Hettinger · 21 years ago
  27. 8170200 SF patch #797180: Bug 792656: slicing explained by Raymond Hettinger · 21 years ago
  28. 6e13bcc SF bug #775836: change 0,1 to False,True in dict.has_key doc by Raymond Hettinger · 21 years ago
  29. 46f681c Discussion of signatures for unicode.translate() and str.translate() by Raymond Hettinger · 21 years ago
  30. 2dd8c42 SF bug #696777: How to make a class iterable using a member generator. by Raymond Hettinger · 21 years ago
  31. 93719b5 Updated documentation for the new slice arguments for list.index(). by Walter Dörwald · 21 years ago
  32. 19a5a71 Patch #744238: Explain that different string types also may compare equal. by Martin v. Löwis · 21 years ago
  33. 0dfd7a9 Missing parenthesis found by texcheck.py by Raymond Hettinger · 21 years ago
  34. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  35. 90fc0b3 At the site of an indexed reference to print, point to the relevant by Fred Drake · 21 years ago
  36. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  37. 4cee220 - added example of using a comparison function with list.sort(), and by Fred Drake · 21 years ago
  38. a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 21 years ago
  39. 9c20615 Back in June in revision 1.98 Steve (accidentally, presumably) wiped by Michael W. Hudson · 21 years ago
  40. f927f14 Fix SF bug #687655, String formatting conversions misleading by Neal Norwitz · 22 years ago
  41. 2bd1568 SF patch 664183 and SF bug 664044: Note that both u'%s' % 'x' and by Raymond Hettinger · 22 years ago
  42. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  43. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  44. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  45. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  46. 71aa6d6 Patch #646824: Remove extra \end. by Martin v. Löwis · 22 years ago
  47. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago
  48. e55bec2 Better note that str.zfill() was added in 2.2.2 as well. ;-( by Fred Drake · 22 years ago
  49. 9171801 Document that a minor feature was added in 2.2.2. ;-( Closes SF bug #639170. by Fred Drake · 22 years ago
  50. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  51. f596826 - The "-" format flag overrides the "0" flag, not the "-" flag. by Fred Drake · 22 years ago
  52. 36c2bd8 Remove spurious period. by Fred Drake · 22 years ago
  53. 0177783 Extend some comments on the order of values in the returns from by Fred Drake · 22 years ago
  54. 442c7c7 Clarify that the bool instances are acceptable return values from by Fred Drake · 22 years ago
  55. 0fc0186 Document file.next(). Mark xreadlines obsolete (both method and by Guido van Rossum · 22 years ago
  56. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  57. 7482458 Added new footnote about list.sort() stability. Repaired footnote about by Tim Peters · 22 years ago
  58. 9534e14 Record the decision that StopIteration is a sink state (see recent by Guido van Rossum · 22 years ago
  59. 3e59f72 Clarify the return value of __nonzero__(): It *must* be an integer. by Fred Drake · 22 years ago
  60. 1e4519f Make a start at describing the results of class/type unification by Steve Holden · 22 years ago
  61. 9c92b69 Use \code{True} (or False) instead of true/false. by Neal Norwitz · 22 years ago
  62. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  63. 177b4a0 Jack's documentation for the U mode character on the file() by Barry Warsaw · 22 years ago
  64. 6cf09f0 Patch 543387. Document deprecation of complex %, //,and divmod(). by Raymond Hettinger · 22 years ago
  65. b07fa39 Added missing index entries for mapping methods. Closes patch #548693. by Raymond Hettinger · 22 years ago
  66. b903201 Update the xrange object description to reflect the removal of deprecated by Fred Drake · 22 years ago
  67. 4d707a5 Remove extra period produced by previous change. by Fred Drake · 22 years ago
  68. 4b27051 Correct information on support for repietition & concatenation for buffer by Fred Drake · 22 years ago
  69. 52cc670 Add a note about when the "%r" formatting code was added. by Fred Drake · 22 years ago
  70. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  71. 8b1c47b Document the optional argument to the .strip(), .rstrip(), .strip() string by Fred Drake · 22 years ago
  72. e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 22 years ago
  73. 6b35370 Update docs for bool changes by Guido around April 6 by Neal Norwitz · 22 years ago
  74. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  75. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 22 years ago
  76. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 22 years ago
  77. ab2dc1d Added index entries similar to some recommended by Skip, and used the word by Fred Drake · 23 years ago
  78. 6048ce9 Added documentation for str.decode(). This closes SF bug #490823. by Fred Drake · 23 years ago
  79. b38784e Slightly improved indexing for the string-% operator, thanks to comments by Fred Drake · 23 years ago
  80. 14f5c5f Make no assumption about how modules are built when referring to them; this by Fred Drake · 23 years ago
  81. 3570551 Remove most references to __members__ and __methods__, leaving only one pair by Fred Drake · 23 years ago
  82. c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 23 years ago
  83. 99de218 Promote file objects out of the "Other Objects" category, so they become by Fred Drake · 23 years ago
  84. 003047a Mention the new file() builtin in the section on file objects. by Tim Peters · 23 years ago
  85. ef428a2 Explain what [].insert() does when the target index is negative. by Fred Drake · 23 years ago
  86. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  87. 599db7d The list.sort() docs require a function that returns -1, 0 or +1. That's by Tim Peters · 23 years ago
  88. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  89. 038d264 Note that files are iterable; describe what the iterator returns. by Fred Drake · 23 years ago
  90. d800cff Added explanation that [...] * n generates shallow copies of [...], so by Fred Drake · 23 years ago
  91. 5ef99a0 Describe the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  92. 54f6509 Typo fix. by Greg Ward · 23 years ago
  93. 41d7d58 trivial rewording in footnote 5. by Skip Montanaro · 23 years ago
  94. 907e76b Fix up a few style nits -- avoid "e.g." and "i.e." -- these make by Fred Drake · 23 years ago
  95. 5fe2c13 List constraints on xrange() objects. by Guido van Rossum · 23 years ago
  96. 3f56166 Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, by Guido van Rossum · 23 years ago
  97. e9218a1 Remove the restriction on a mapping's .update() method. by Barry Warsaw · 23 years ago
  98. 4a6c5c5 Fixed reference to table notes for {}.keys() and {}.items() -- these by Fred Drake · 23 years ago
  99. c6d8f8d Add descriptions of {}.iteritems(), {}.iterkeys(), and {}.itervalues() by Fred Drake · 23 years ago
  100. f42cc45 The general iteration support is part of 2.2, not 2.1 -- fixed the version by Fred Drake · 23 years ago