1. 0aecc18 Fix typo reported by Jesse W on docs@ by Zachary Ware · 10 years ago
  2. b6d1f48 Issue #21559: Add alternative (historical) reason for OverflowError. by Terry Jan Reedy · 10 years ago
  3. f2fb73f Issue #19362: Tweek len() doc and docstring to expand the indicated range of by Terry Jan Reedy · 10 years ago
  4. e58e0c7 clarify when the list of subdirectories is read (closes #13779) by Benjamin Peterson · 10 years ago
  5. ef8abfc document IOBase.__del__'s behavior (closes #21764) by Benjamin Peterson · 10 years ago
  6. e0d324d Issue #21752: Documented change to behaviour of logging.getLevelName(). by Vinay Sajip · 10 years ago
  7. 6926e3e Issue #21726: Remove unnecessary and contextually wrong line. by Terry Jan Reedy · 10 years ago
  8. b2788fe Issue #16136: VMSError is done, bye bye VMS by Victor Stinner · 10 years ago
  9. e973823 #21693 - Fix the broken link for pylons project. by Senthil Kumaran · 10 years ago
  10. 5989511 Issue #21688: Give informative error message when hhc.exe cannot be found. by Zachary Ware · 10 years ago
  11. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  12. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  13. 1538665 Issue #21700: Fix asyncio doc, add DatagramProtocol by Victor Stinner · 10 years ago
  14. 6ceca4e #20903: clarify what happens when an smtp connection timeout occurs. by R David Murray · 10 years ago
  15. b1f59ce Issue #21569: Fix incorrect cross reference by Nick Coghlan · 10 years ago
  16. 96e0430 document TokenError and unclosed expression behavior (closes #12063) by Benjamin Peterson · 10 years ago
  17. 4bb09c8 specify that getuid() returns the real uid (closes #10503) by Benjamin Peterson · 10 years ago
  18. 9b2731b document the compress_level argument to tarfile.open (closes #21404) by Benjamin Peterson · 10 years ago
  19. 024b2f5 Issue #21569: sync Python 2.7 What's New with 2.7 version by Nick Coghlan · 10 years ago
  20. 1462786 Issue #21667: Clarify string data model description by Nick Coghlan · 10 years ago
  21. 780b585 Quash extraneous quote. by Zachary Ware · 10 years ago
  22. 2c07818 #21662: fix typo, improve sentence flow by R David Murray · 10 years ago
  23. 092135e #21653: fix doc for return type of sqlite3.Row.keys(). by R David Murray · 10 years ago
  24. 66f305b Issue #21661: Fix typo. by Zachary Ware · 10 years ago
  25. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  26. 2f78b84 Issue #21439: Fix a couple of typos. by Zachary Ware · 10 years ago
  27. 8dc3df1 Update references to Python docs in the sidebar index. by Senthil Kumaran · 10 years ago
  28. b52f876 Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier. by Terry Jan Reedy · 10 years ago
  29. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  30. e81c637 Updated logging HOWTO section on optimization. by Vinay Sajip · 10 years ago
  31. a819577 give the correct fixer name (closes #21604) by Benjamin Peterson · 10 years ago
  32. 0edb5c1 Issue #21593: (from StackOverflow) minor doc clarification for re.search. by Terry Jan Reedy · 10 years ago
  33. c673a9a Issue #21608: Updated HTTPHandler documentation. by Vinay Sajip · 10 years ago
  34. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  35. 28d0ae48 Issue #21376: document asyncio.TimeoutError by Victor Stinner · 10 years ago
  36. aa7886d Issue 21439: Minor issues in the reference manual. by Raymond Hettinger · 10 years ago
  37. 5e2c4d2 grammar and sentence flow fix by Benjamin Peterson · 10 years ago
  38. f9ea5f3 format reST directive in the usual way by Benjamin Peterson · 10 years ago
  39. 0d81d80 link to wikipedia description of cryptographic salt by Benjamin Peterson · 10 years ago
  40. 0ccff4d oxford comma by Benjamin Peterson · 10 years ago
  41. 419f1fa fix typo in variable name (closes #21586) by Benjamin Peterson · 10 years ago
  42. e8e2df3 Issue 21558: Fix a typo in the contextlib docs by Raymond Hettinger · 10 years ago
  43. e1d54e5 Mention setuptools & wheel as key terms for distribution by Nick Coghlan · 10 years ago
  44. e17de09 Issue #21545: Add .pop example and tweak comment about pure mutation methods. by Terry Jan Reedy · 10 years ago
  45. 7096e26 Issue 21479: Fix markup for the TarFile.open() classmethod. by Raymond Hettinger · 10 years ago
  46. f7f64f9 Issue 21198: Minor tarfile documentation bug. by Raymond Hettinger · 10 years ago
  47. bd46e48 Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil. by Raymond Hettinger · 10 years ago
  48. ae4bab7 Don't grow strings by concatenation. Use ''.join() instead. by Raymond Hettinger · 10 years ago
  49. 75e0338 Issue #21430: additions to the description of non-blocking SSL sockets by Antoine Pitrou · 10 years ago
  50. 2d1ec06 Issue #21364: remove recommendation of broken pattern. by Antoine Pitrou · 10 years ago
  51. ef5b4e3 Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword support. by Victor Stinner · 10 years ago
  52. ae9d193 #21347: use string not list in shell=True example. by R David Murray · 10 years ago
  53. 73308d6 Merge doc change from 3.3 by Jason R. Coombs · 10 years ago
  54. 13266fb Update docs to reflect resurrection of Setuptools over Distribute by Jason R. Coombs · 10 years ago
  55. 08197a4 Issue #21226: Set all attrs in PyImport_ExecCodeModuleObject. by Eric Snow · 10 years ago
  56. b0539b2 Issue #21485: remove unnecesary .flush() calls in the asyncio subprocess code by Victor Stinner · 10 years ago
  57. 8e0aa05 Change all references to Unix to POSIX in the subprocess docs. It's by Gregory P. Smith · 10 years ago
  58. 6436cba Remove the warning-soup from the subprocess documentation by adding by Gregory P. Smith · 10 years ago
  59. 5c8ce18 remove confusing delete indexing (closes #21466) by Benjamin Peterson · 10 years ago
  60. 062fcac Issue #21438: Document what loaders don't require a module name for by Brett Cannon · 10 years ago
  61. f26702b Issue #21157: Touch up imp docs to be more explicit about importlib by Brett Cannon · 10 years ago
  62. a83ade1 #21300: fix typo by R David Murray · 10 years ago
  63. e252446 #21300: Clean up the docs for the email "policy" arguments. by R David Murray · 10 years ago
  64. 9fafc9f Add prompts to interactive example. by Zachary Ware · 10 years ago
  65. 8edd532 Issue #21366: Document the fact that ``return`` in a ``finally`` clause by Zachary Ware · 10 years ago
  66. 5280d2e asyncio docs: ProactorEventLoop does not support SSL. by Guido van Rossum · 10 years ago
  67. d8ea56d Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 10 years ago
  68. 024c5ee Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 10 years ago
  69. a67b97f Issue #17386: Expand Doc/make.bat to be much more similar to Doc/Makefile by Zachary Ware · 10 years ago
  70. 1de519c Issue #17386: Update Doc/README.txt to list all targets by Zachary Ware · 10 years ago
  71. 9393fff Issue #17386: List the 'htmlview' target in the Doc/Makefile help output. by Zachary Ware · 10 years ago
  72. 9cc9026 Issue #21055: Index (augmented) assignment symbols. by Terry Jan Reedy · 10 years ago
  73. 7c895ed Closes 21048: Index 'as' in import and with statements. by Terry Jan Reedy · 10 years ago
  74. 43e7cd3 Issue #21026: Augment site doc based on experiments. Patch by Carol Willing. by Terry Jan Reedy · 10 years ago
  75. f9f54a2 Issue #9307: document the various Py_TPFLAGS_*_SUBCLASS flags. Patch by Yury V. Zaytsev. by Antoine Pitrou · 10 years ago
  76. ae25f46 #18243: Remove obsolete cautionary note from email mktime_tz docs. by R David Murray · 10 years ago
  77. 9e59967 fix off-by-one error (closes #21330) by Benjamin Peterson · 10 years ago
  78. bddecc3 Issue #21232: Replace .splitlines arg '1' with 'keepends=True'. by Terry Jan Reedy · 10 years ago
  79. a37ff0f Issue #21289: Fix documentation building on Windows using Doc/make.bat. by Zachary Ware · 10 years ago
  80. d065c48 fix ref count annotations on sphinx >= 1.2.1 (closes #21286) by Benjamin Peterson · 10 years ago
  81. aad7cc9 Clarify BROWSER envar behavior in webbrowser.py. Noted by David Turner. Closes #21248 by Senthil Kumaran · 10 years ago
  82. 8b4a272 Correct the URL in the http.client example. Noted by Evens Fortuné. Closes #21229 by Senthil Kumaran · 10 years ago
  83. f7f9818 #18628: clarify index entry for source file encoding declaration. by R David Murray · 10 years ago
  84. cad2bf2 Address issue 18229 - Explain http.server.BaseHTTPRequestHandler's .headers attribute further. by Senthil Kumaran · 10 years ago
  85. 7f84d1e #18566: Whitespace by Terry Jan Reedy · 10 years ago
  86. 6ac4240 Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal. by Terry Jan Reedy · 10 years ago
  87. fc1020d #20874: reflow paragraph. by R David Murray · 10 years ago
  88. 0e0e391 #20874: update tutorial wording: sophisticated line editing is now standard. by R David Murray · 10 years ago
  89. 65425b4 Issue #21245: updated documentation on exception() method and function. by Vinay Sajip · 10 years ago
  90. fe0e108 #15104: add backtick code markup. by R David Murray · 10 years ago
  91. 061cb3b #15104: improve the discussion of __main__. by R David Murray · 10 years ago
  92. 44da19a #18518: mention that including a return statement changes/breaks the behaviour by Andrew Kuchling · 10 years ago
  93. abf079d Issue #20624: Exception docs wording tweak - clarify that it's okay to inherit from a subclass of Exception. by Mark Dickinson · 10 years ago
  94. 604453c #21169: add comment and doc update for getpass change. by R David Murray · 10 years ago
  95. 04d8a24 Fix faq example with division. by Eric V. Smith · 10 years ago
  96. fc9a4d8 Fix text about int() with octal numbers. Closes #21212. by Eric V. Smith · 10 years ago
  97. ecd9e8a Remove references to the obsolete Mac Carbon modules in the GUI by Ned Deily · 10 years ago
  98. f98021c Issue #21170: Removed invalid parameter names from unittest doc. by Terry Jan Reedy · 10 years ago
  99. f3ddcc9 issue #21190: Fix the broken docs download link by Senthil Kumaran · 10 years ago
  100. af8a4df docs: Better wording for __objclass__ docs. Issue #19281 by Yury Selivanov · 10 years ago