1. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  2. 74c8e55 SF bug #804280: fromkeys is not listed in index by Raymond Hettinger · 21 years ago
  3. b67449d Fix spacing markup and other sundries. by Raymond Hettinger · 21 years ago
  4. 8170200 SF patch #797180: Bug 792656: slicing explained by Raymond Hettinger · 21 years ago
  5. 6e13bcc SF bug #775836: change 0,1 to False,True in dict.has_key doc by Raymond Hettinger · 21 years ago
  6. 46f681c Discussion of signatures for unicode.translate() and str.translate() by Raymond Hettinger · 21 years ago
  7. 2dd8c42 SF bug #696777: How to make a class iterable using a member generator. by Raymond Hettinger · 21 years ago
  8. 93719b5 Updated documentation for the new slice arguments for list.index(). by Walter Dörwald · 21 years ago
  9. 19a5a71 Patch #744238: Explain that different string types also may compare equal. by Martin v. Löwis · 21 years ago
  10. 0dfd7a9 Missing parenthesis found by texcheck.py by Raymond Hettinger · 21 years ago
  11. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  12. 90fc0b3 At the site of an indexed reference to print, point to the relevant by Fred Drake · 21 years ago
  13. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  14. 4cee220 - added example of using a comparison function with list.sort(), and by Fred Drake · 21 years ago
  15. a3e1e4c SF patch #693753: fix for bug 639806: default for dict.pop by Raymond Hettinger · 22 years ago
  16. 9c20615 Back in June in revision 1.98 Steve (accidentally, presumably) wiped by Michael W. Hudson · 22 years ago
  17. f927f14 Fix SF bug #687655, String formatting conversions misleading by Neal Norwitz · 22 years ago
  18. 2bd1568 SF patch 664183 and SF bug 664044: Note that both u'%s' % 'x' and by Raymond Hettinger · 22 years ago
  19. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  20. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  21. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  22. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  23. 71aa6d6 Patch #646824: Remove extra \end. by Martin v. Löwis · 22 years ago
  24. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago
  25. e55bec2 Better note that str.zfill() was added in 2.2.2 as well. ;-( by Fred Drake · 22 years ago
  26. 9171801 Document that a minor feature was added in 2.2.2. ;-( Closes SF bug #639170. by Fred Drake · 22 years ago
  27. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  28. f596826 - The "-" format flag overrides the "0" flag, not the "-" flag. by Fred Drake · 22 years ago
  29. 36c2bd8 Remove spurious period. by Fred Drake · 22 years ago
  30. 0177783 Extend some comments on the order of values in the returns from by Fred Drake · 22 years ago
  31. 442c7c7 Clarify that the bool instances are acceptable return values from by Fred Drake · 22 years ago
  32. 0fc0186 Document file.next(). Mark xreadlines obsolete (both method and by Guido van Rossum · 22 years ago
  33. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  34. 7482458 Added new footnote about list.sort() stability. Repaired footnote about by Tim Peters · 22 years ago
  35. 9534e14 Record the decision that StopIteration is a sink state (see recent by Guido van Rossum · 22 years ago
  36. 3e59f72 Clarify the return value of __nonzero__(): It *must* be an integer. by Fred Drake · 22 years ago
  37. 1e4519f Make a start at describing the results of class/type unification by Steve Holden · 22 years ago
  38. 9c92b69 Use \code{True} (or False) instead of true/false. by Neal Norwitz · 22 years ago
  39. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  40. 177b4a0 Jack's documentation for the U mode character on the file() by Barry Warsaw · 22 years ago
  41. 6cf09f0 Patch 543387. Document deprecation of complex %, //,and divmod(). by Raymond Hettinger · 22 years ago
  42. b07fa39 Added missing index entries for mapping methods. Closes patch #548693. by Raymond Hettinger · 22 years ago
  43. b903201 Update the xrange object description to reflect the removal of deprecated by Fred Drake · 22 years ago
  44. 4d707a5 Remove extra period produced by previous change. by Fred Drake · 22 years ago
  45. 4b27051 Correct information on support for repietition & concatenation for buffer by Fred Drake · 22 years ago
  46. 52cc670 Add a note about when the "%r" formatting code was added. by Fred Drake · 22 years ago
  47. 068325e Apply the second version of SF patch http://www.python.org/sf/536241 by Walter Dörwald · 22 years ago
  48. 8b1c47b Document the optional argument to the .strip(), .rstrip(), .strip() string by Fred Drake · 22 years ago
  49. e027d98 Add Raymond Hettinger's d.pop(). See SF patch 539949. by Guido van Rossum · 22 years ago
  50. 6b35370 Update docs for bool changes by Guido around April 6 by Neal Norwitz · 22 years ago
  51. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  52. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 23 years ago
  53. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 23 years ago
  54. ab2dc1d Added index entries similar to some recommended by Skip, and used the word by Fred Drake · 23 years ago
  55. 6048ce9 Added documentation for str.decode(). This closes SF bug #490823. by Fred Drake · 23 years ago
  56. b38784e Slightly improved indexing for the string-% operator, thanks to comments by Fred Drake · 23 years ago
  57. 14f5c5f Make no assumption about how modules are built when referring to them; this by Fred Drake · 23 years ago
  58. 3570551 Remove most references to __members__ and __methods__, leaving only one pair by Fred Drake · 23 years ago
  59. c37b65e Clean up some markup cruft. A number of the macros that take no by Fred Drake · 23 years ago
  60. 99de218 Promote file objects out of the "Other Objects" category, so they become by Fred Drake · 23 years ago
  61. 003047a Mention the new file() builtin in the section on file objects. by Tim Peters · 23 years ago
  62. ef428a2 Explain what [].insert() does when the target index is negative. by Fred Drake · 23 years ago
  63. 0aa811c Use the \note and \warning macros where appropriate. by Fred Drake · 23 years ago
  64. 599db7d The list.sort() docs require a function that returns -1, 0 or +1. That's by Tim Peters · 23 years ago
  65. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  66. 038d264 Note that files are iterable; describe what the iterator returns. by Fred Drake · 23 years ago
  67. d800cff Added explanation that [...] * n generates shallow copies of [...], so by Fred Drake · 23 years ago
  68. 5ef99a0 Describe the new semantics for setting and deleting a function's by Barry Warsaw · 23 years ago
  69. 54f6509 Typo fix. by Greg Ward · 23 years ago
  70. 41d7d58 trivial rewording in footnote 5. by Skip Montanaro · 23 years ago
  71. 907e76b Fix up a few style nits -- avoid "e.g." and "i.e." -- these make by Fred Drake · 23 years ago
  72. 5fe2c13 List constraints on xrange() objects. by Guido van Rossum · 23 years ago
  73. 3f56166 Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, by Guido van Rossum · 23 years ago
  74. e9218a1 Remove the restriction on a mapping's .update() method. by Barry Warsaw · 23 years ago
  75. 4a6c5c5 Fixed reference to table notes for {}.keys() and {}.items() -- these by Fred Drake · 23 years ago
  76. c6d8f8d Add descriptions of {}.iteritems(), {}.iterkeys(), and {}.itervalues() by Fred Drake · 23 years ago
  77. f42cc45 The general iteration support is part of 2.2, not 2.1 -- fixed the version by Fred Drake · 23 years ago
  78. 93656e7 Added section describing the iterator protocol. by Fred Drake · 23 years ago
  79. 8b3d6ca At the suggestion of Peter Funk, document 'key in dict' and 'key not by Guido van Rossum · 23 years ago
  80. 82f93c6 Only document <file>.xreadlines() once; added version annotation. by Fred Drake · 23 years ago
  81. 4cacec5 Fix a number of minor markup errors. by Fred Drake · 23 years ago
  82. 0dbb4fb Implement, test and document "key in dict" and "key not in dict". by Guido van Rossum · 23 years ago
  83. d4614e8 Updates to the semantics of function and method attributes. by Barry Warsaw · 24 years ago
  84. 8c071d4 Massively improved documentation for string formatting operations, by Fred Drake · 24 years ago
  85. 20ab9e9 Document xreadlines() method. (Forgot to check this in before!) by Guido van Rossum · 24 years ago
  86. 83ad501 effbot caught a typo! by Barry Warsaw · 24 years ago
  87. 773d9f0 Document function attributes for both the function type and the method by Barry Warsaw · 24 years ago
  88. 3c48ef7 Added documentation for the xreadlines module & related changes. The by Fred Drake · 24 years ago
  89. 19ae783 Added information about the interaction of opening a file in append mode by Fred Drake · 24 years ago
  90. ff63f20 "Documentation" for {}.popitem(). by Guido van Rossum · 24 years ago
  91. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  92. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  93. 17383b9 Added information about the %r string formatting conversion. Added note by Fred Drake · 24 years ago
  94. a776cea Document the proper exception to be raised by I/O operations on closed by Fred Drake · 24 years ago
  95. 1dba66c Marc-Andre Lemburg <mal@lemburg.com> noted that the encode() string method by Fred Drake · 24 years ago
  96. 0b4e25d Use \obindex{...} instead of \indexii{...}{type} in many places; this is by Fred Drake · 24 years ago
  97. fffe5db Fixed a number of small problems reported by Detlef Lannert by Fred Drake · 24 years ago
  98. 51f53df Clarify that the softspace attribute is used by print for state management, by Fred Drake · 24 years ago
  99. 752ba39 Clarify a number of issues about the file-like object API based on by Fred Drake · 24 years ago
  100. d5d0435 Use \shortversion in a number of places. by Fred Drake · 24 years ago