1. df3abec Link set and frozenset function docs to their class definitions (issue #16436). by Chris Jerdonek · 12 years ago
  2. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 12 years ago
  3. f341317 Issue #16206: Improve the documentation of the dict constructor. by Chris Jerdonek · 12 years ago
  4. 7fa8222 Fix links to the __next__ method. by Ezio Melotti · 12 years ago
  5. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  6. 57491e0 Issue #16036: Improve documentation of built-in int()'s signature and arguments. by Chris Jerdonek · 12 years ago
  7. 4e12ad1 Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek. by Mark Dickinson · 12 years ago
  8. e0add76 #15831: document multiple signatures on different lines. Patch by Chris Jerdonek. by Ezio Melotti · 12 years ago
  9. 433ef3b #15694: reflow paragraph. by R David Murray · 12 years ago
  10. 9f0c940 #15694: Link discussion of file objects to glossary entry. by R David Murray · 12 years ago
  11. ee0a945 #15543: reflow paragraphs. by R David Murray · 12 years ago
  12. 1b00f25 #15543: glossary entry for and 'universal newlines', and links to it. by R David Murray · 12 years ago
  13. 296d1be Restore original line lengths. by Georg Brandl · 12 years ago
  14. ecd78fe Issue #15624: clarify newline documentation for open and io.TextIOWrapper by Andrew Svetlov · 12 years ago
  15. 9b000e7 Issue #15482: Properly document the default 'level' parameter for __import__(). by Brett Cannon · 12 years ago
  16. 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 12 years ago
  17. 83efd6c Issue #13557: Clarify effect of giving two different namespaces to exec or by Terry Jan Reedy · 12 years ago
  18. 328dd0d Closes #9574: Note that complex constructor doesn't allow whitespace around central operator. by Mark Dickinson · 13 years ago
  19. a3d1e2e #11633 At least 2 people prefer earlier revision. by Terry Jan Reedy · 13 years ago
  20. e247928 Closes #11633 Clarify print buffering. by Terry Jan Reedy · 13 years ago
  21. 6f45d18 Improve itertools docs with clearer examples of pure python equivalent code. by Raymond Hettinger · 13 years ago
  22. 963004d Fix typo. by Ezio Melotti · 13 years ago
  23. e130a52 Remove duplication. by Ezio Melotti · 13 years ago
  24. 18ddf82 Add links from library/functions to other docs. by Éric Araujo · 13 years ago
  25. 9edd9f0 Fix a few links in the table of built-in functions (#12298) by Éric Araujo · 13 years ago
  26. e8b7eb0 Link isinstance/issubclass to the ABC glossary entry (#12256) by Éric Araujo · 13 years ago
  27. e801aa2 Let the doc of __import__ link to importlib (#9254). by Éric Araujo · 13 years ago
  28. 9d3df6d Issue 11889: Clarify docs for enumerate. by Raymond Hettinger · 13 years ago
  29. 9028928 Forward port doc updates for builtin functions. by Raymond Hettinger · 13 years ago
  30. c5069e0 Merge doc touch-ups and fixes for #9831 and #9223 from 3.1 by Éric Araujo · 13 years ago
  31. f33de71 Minor doc addition for clarity by Éric Araujo · 13 years ago
  32. 30439b2 Document default fmtspec. Fix inaccurate note. Document exceptions. by Raymond Hettinger · 13 years ago
  33. 2a39b71 Replace sys.maxint mention by sys.maxsize. by Georg Brandl · 14 years ago
  34. 4640237 Fix markup errors. by Georg Brandl · 14 years ago
  35. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  36. 38e117d Fix punctuation. by Georg Brandl · 14 years ago
  37. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  38. 1de9115 Add callable() to the built-in functions table. by Ezio Melotti · 14 years ago
  39. e71362d Issue #10518: Bring back the callable() builtin. by Antoine Pitrou · 14 years ago
  40. ab32fec Merged revisions 85572-85573,85606,85609-85622,85624,85626-85627,85629,85631,85633,85635-85636,85638-85639,85641-85642 via svnmerge from by Georg Brandl · 14 years ago
  41. 3188b20 Merged revisions 86737 via svnmerge from by Ezio Melotti · 14 years ago
  42. 17f9b3d Add NEWS entry for r86732 and fix double function in the table. by Ezio Melotti · 14 years ago
  43. 42cc06e Merged revisions 86732 via svnmerge from by Ezio Melotti · 14 years ago
  44. f21c7ed #10299: Add a table that lists all the built-in functions in functions.rst by Ezio Melotti · 14 years ago
  45. da825ab Merged revisions 86670 via svnmerge from by Éric Araujo · 14 years ago
  46. 28053fb Remove unnecessary `object` base class in docs (#10366). by Éric Araujo · 14 years ago
  47. 47c74ac Issue #10488: Bring documentation for 'float' builtin up to date. by Mark Dickinson · 14 years ago
  48. 60d8684 Merged revisions 86603 via svnmerge from by Antoine Pitrou · 14 years ago
  49. b85b3af In 3.x, bytearray is akin to bytes, not str. by Antoine Pitrou · 14 years ago
  50. 689aa6d Merged revisions 86526 via svnmerge from by Alexander Belopolsky · 14 years ago
  51. 5d4dd3e Issue 7828: Fixed chr() and ord() documentation for wide characters by Alexander Belopolsky · 14 years ago
  52. f7b5fa5 Merged revisions 86249 via svnmerge from by Éric Araujo · 14 years ago
  53. 8f9626b Fix typo by Éric Araujo · 14 years ago
  54. 30bf6e8 Issue 7447: Improve docs for sum(). by Raymond Hettinger · 14 years ago
  55. b373799 Issue 7447: Improve docs for sum(). by Raymond Hettinger · 14 years ago
  56. 8e4ddcf #10122: typo fix. by Georg Brandl · 14 years ago
  57. 066e7a9 Issue #10029: Fix sample code in the docs for zip(). by Raymond Hettinger · 14 years ago
  58. 2f08df3 Issue #10029: Fix sample code in the docs for zip(). by Raymond Hettinger · 14 years ago
  59. e5e6bc6 Merged revisions 85276 via svnmerge from by Georg Brandl · 14 years ago
  60. 682d7e0 Fix errors found by "make suspicious". by Georg Brandl · 14 years ago
  61. 4009c9e Merged revisions 82805-82806,83523-83527,83536,83538,83542,83546-83548,83550-83555,83558,83560 via svnmerge from by Georg Brandl · 14 years ago
  62. 914a218 Merged revisions 82629,82632,82724,82757-82758,82760-82763,82798-82799,82801 via svnmerge from by Georg Brandl · 14 years ago
  63. 476a31e Issue 9802: Document min()/max() sort stability by Raymond Hettinger · 14 years ago
  64. f8a08d9 Merged revisions 84359-84360 via svnmerge from by Benjamin Peterson · 14 years ago
  65. 6b4fa77 rewrite and move open() docs only to functions.rst by Benjamin Peterson · 14 years ago
  66. 4e4ffb1 sync open() doc by Benjamin Peterson · 14 years ago
  67. 1768999 only catch AttributeError in hasattr() #9666 by Benjamin Peterson · 14 years ago
  68. 7ac98ae wrap by Benjamin Peterson · 14 years ago
  69. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 14 years ago
  70. 7528b9b #8172: how does one use a property? by Georg Brandl · 14 years ago
  71. 7ce3f2c Merged revisions 83277 via svnmerge from by Mark Dickinson · 14 years ago
  72. c4fbcdc Add note about surprising behaviour from round function. by Mark Dickinson · 14 years ago
  73. 05bfcc5 #7935: cross-reference to ast.literal_eval() from eval() docs. by Georg Brandl · 14 years ago
  74. e40ee50 #9184: fix default value for "buffering" param of open(). by Georg Brandl · 14 years ago
  75. dfaaae9 Merged revisions 81572 via svnmerge from by Benjamin Peterson · 14 years ago
  76. 2550346 correct default value in signature by Benjamin Peterson · 14 years ago
  77. c50846a Forward port total_ordering() and cmp_to_key(). by Raymond Hettinger · 15 years ago
  78. 46fca07 Document sorting HowTo by Raymond Hettinger · 15 years ago
  79. bdfa22b Document sorting HowTo by Raymond Hettinger · 15 years ago
  80. 1f70cdf Merged revisions 79168-79169 via svnmerge from by Georg Brandl · 15 years ago
  81. 6e40e27 Merged revisions 77298 via svnmerge from by Ezio Melotti · 15 years ago
  82. fc43127 Merged revisions 76776 via svnmerge from by Benjamin Peterson · 15 years ago
  83. 97dd987 Merged revisions 76534,76538,76628,76701,76774 via svnmerge from by Benjamin Peterson · 15 years ago
  84. a5a5ce9 Merged revisions 76771 via svnmerge from by Benjamin Peterson · 15 years ago
  85. 45abfbc death to exec statement by Benjamin Peterson · 15 years ago
  86. 2021100 Merged revisions 76259,76326,76376-76377,76430,76471,76517 via svnmerge from by Benjamin Peterson · 15 years ago
  87. aeaa592 Merged revisions 76230 via svnmerge from by Benjamin Peterson · 15 years ago
  88. 628e6f9 Merged revisions 75797 via svnmerge from by Georg Brandl · 15 years ago
  89. 495f7b5 Merged revisions 75365,75394,75402-75403,75418,75459,75484,75592-75596,75600,75602-75607,75610-75613,75616-75617,75623,75627,75640,75647,75696,75795 via svnmerge from by Georg Brandl · 15 years ago
  90. 810a80a clarify the buffer arg by Benjamin Peterson · 15 years ago
  91. f3d7dbe Merged revisions 75231 via svnmerge from by Benjamin Peterson · 15 years ago
  92. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 149953a Merged revisions 75207 via svnmerge from by Mark Dickinson · 15 years ago
  94. 36cea39 Merged revisions 75205 via svnmerge from by Mark Dickinson · 15 years ago
  95. 3e124ae Issue #1766304: Optimize membership testing for ranges: 'n in range(...)' by Mark Dickinson · 15 years ago
  96. c5605df Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,74311,74334,74368 via svnmerge from by Georg Brandl · 15 years ago
  97. 1b5ab45 Merged revisions 74328,74332-74333,74365 via svnmerge from by Georg Brandl · 15 years ago
  98. 6601126 Merged revisions 73511 via svnmerge from by R. David Murray · 15 years ago
  99. fa0d703 Merged revisions 72506,72525-72526,72551,72558,72616,72654-72655,72689,72745,72750,72802,72812,72822,72824,72826-72827,72833,72876,72890,72923,72946,73026,73042,73045,73047,73065,73068-73069 via svnmerge from by Benjamin Peterson · 15 years ago
  100. 036490d More conversion to new-style optional args. by Georg Brandl · 15 years ago