1. 588517c Fix grammar by Andrew Svetlov · 10 years ago
  2. eb0ef41 Issue #13540: Removed redundant documentation about Action instance attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524. by Jason R. Coombs · 10 years ago
  3. e004c6c Issue #22006: Remove outdated _thread caveat. Thanks Dan O'Reilly for the report. by Mark Dickinson · 10 years ago
  4. 0069eac Issue #22004: Correct an argument name. by Zachary Ware · 10 years ago
  5. d55b54d asyncio, tulip issue 190: Process.communicate() now ignores by Victor Stinner · 10 years ago
  6. cc996b5 asyncio, tulip issue 190: Process.communicate() must ignore BrokenPipeError by Victor Stinner · 10 years ago
  7. 38bf87c Issue #21994: Fix SyntaxError in the SSLContext.check_hostname documentation. by Berker Peksag · 10 years ago
  8. 8faecbf Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@. by Zachary Ware · 10 years ago
  9. 8323f68 Issue 21977: Minor improvements to the regexes in the tokenizer example. by Raymond Hettinger · 10 years ago
  10. 4bfb14a asyncio: Server.close() leaves client sockets open by Victor Stinner · 10 years ago
  11. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  12. 778015b asyncio: enhance documentation of platform support by Victor Stinner · 10 years ago
  13. 740c730 Issues #21948 and #16040: Fix typos. by Berker Peksag · 10 years ago
  14. aea8229 Issue #21680: Document asyncio event loops by Victor Stinner · 10 years ago
  15. 530ef2f Update asyncio documentation by Victor Stinner · 10 years ago
  16. 63b21a8 Closes #21921: Fix ResourceWarning in the asyncio examples: close the event by Victor Stinner · 10 years ago
  17. 5021cb5 Issue #21920: Add a missing colon to the __main__ doc. by Berker Peksag · 10 years ago
  18. 3410af4 Add an index entry for exec() builtin. by Berker Peksag · 10 years ago
  19. 11cda47 Fix guidance for subclassing collections.Set() by Raymond Hettinger · 10 years ago
  20. ee750d8 Use try-finally idiom in example for locks in multiprocessing by Andrew Svetlov · 10 years ago
  21. 5c86701 Issue #21875: Remove vestigial references to Classic Mac OS in os module docs. by Ned Deily · 10 years ago
  22. 0c4baa4 MERGE: Closes #20872: dbm/gdbm/ndbm close methods are not documented by Jesus Cea · 10 years ago
  23. ac4b7f7 Closes #20872: dbm/gdbm/ndbm close methods are not documented by Jesus Cea · 10 years ago
  24. 99597c4 Correct the quopri module documentation. Mention the correct types of the by Senthil Kumaran · 10 years ago
  25. f6f78e1 clarify that islink only really works if python knows about symlinks (closes #13143) by Benjamin Peterson · 10 years ago
  26. 9b29acd some timezone doc improvements (closes #16667) by Benjamin Peterson · 10 years ago
  27. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  28. 62511fd asyncio: document the debug mode by Victor Stinner · 10 years ago
  29. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  30. 4932e14 issue 20091 - index entry for __main__ in runpy docs. by Senthil Kumaran · 10 years ago
  31. 642d4b6 #21690: fix a couple of links in the docs of the re module. Noticed by Julian Gilbey. by Ezio Melotti · 10 years ago
  32. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  33. 6bfd854 Closes #21758: asyncio doc: mention explicitly that subprocess parameters are by Victor Stinner · 10 years ago
  34. 8909127 Fix typo pointed out by cocoatomo on docs@ by Zachary Ware · 10 years ago
  35. 64d750b asyncio: Fix pyflakes errors by Victor Stinner · 10 years ago
  36. b6d1f48 Issue #21559: Add alternative (historical) reason for OverflowError. by Terry Jan Reedy · 10 years ago
  37. f2fb73f Issue #19362: Tweek len() doc and docstring to expand the indicated range of by Terry Jan Reedy · 10 years ago
  38. e58e0c7 clarify when the list of subdirectories is read (closes #13779) by Benjamin Peterson · 10 years ago
  39. ef8abfc document IOBase.__del__'s behavior (closes #21764) by Benjamin Peterson · 10 years ago
  40. e0d324d Issue #21752: Documented change to behaviour of logging.getLevelName(). by Vinay Sajip · 10 years ago
  41. b2788fe Issue #16136: VMSError is done, bye bye VMS by Victor Stinner · 10 years ago
  42. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  43. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  44. 1538665 Issue #21700: Fix asyncio doc, add DatagramProtocol by Victor Stinner · 10 years ago
  45. 6ceca4e #20903: clarify what happens when an smtp connection timeout occurs. by R David Murray · 10 years ago
  46. 96e0430 document TokenError and unclosed expression behavior (closes #12063) by Benjamin Peterson · 10 years ago
  47. 4bb09c8 specify that getuid() returns the real uid (closes #10503) by Benjamin Peterson · 10 years ago
  48. 9b2731b document the compress_level argument to tarfile.open (closes #21404) by Benjamin Peterson · 10 years ago
  49. 092135e #21653: fix doc for return type of sqlite3.Row.keys(). by R David Murray · 10 years ago
  50. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  51. b52f876 Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier. by Terry Jan Reedy · 10 years ago
  52. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  53. a819577 give the correct fixer name (closes #21604) by Benjamin Peterson · 10 years ago
  54. 0edb5c1 Issue #21593: (from StackOverflow) minor doc clarification for re.search. by Terry Jan Reedy · 10 years ago
  55. c673a9a Issue #21608: Updated HTTPHandler documentation. by Vinay Sajip · 10 years ago
  56. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  57. 28d0ae48 Issue #21376: document asyncio.TimeoutError by Victor Stinner · 10 years ago
  58. 5e2c4d2 grammar and sentence flow fix by Benjamin Peterson · 10 years ago
  59. f9ea5f3 format reST directive in the usual way by Benjamin Peterson · 10 years ago
  60. 0d81d80 link to wikipedia description of cryptographic salt by Benjamin Peterson · 10 years ago
  61. 0ccff4d oxford comma by Benjamin Peterson · 10 years ago
  62. e8e2df3 Issue 21558: Fix a typo in the contextlib docs by Raymond Hettinger · 10 years ago
  63. 7096e26 Issue 21479: Fix markup for the TarFile.open() classmethod. by Raymond Hettinger · 10 years ago
  64. f7f64f9 Issue 21198: Minor tarfile documentation bug. by Raymond Hettinger · 10 years ago
  65. 75e0338 Issue #21430: additions to the description of non-blocking SSL sockets by Antoine Pitrou · 10 years ago
  66. 2d1ec06 Issue #21364: remove recommendation of broken pattern. by Antoine Pitrou · 10 years ago
  67. ef5b4e3 Issue #21488: Fix doc of codecs.decode() and codecs.encode(), no keyword support. by Victor Stinner · 10 years ago
  68. ae9d193 #21347: use string not list in shell=True example. by R David Murray · 10 years ago
  69. 73308d6 Merge doc change from 3.3 by Jason R. Coombs · 10 years ago
  70. 13266fb Update docs to reflect resurrection of Setuptools over Distribute by Jason R. Coombs · 10 years ago
  71. b0539b2 Issue #21485: remove unnecesary .flush() calls in the asyncio subprocess code by Victor Stinner · 10 years ago
  72. 8e0aa05 Change all references to Unix to POSIX in the subprocess docs. It's by Gregory P. Smith · 10 years ago
  73. 6436cba Remove the warning-soup from the subprocess documentation by adding by Gregory P. Smith · 10 years ago
  74. 062fcac Issue #21438: Document what loaders don't require a module name for by Brett Cannon · 10 years ago
  75. f26702b Issue #21157: Touch up imp docs to be more explicit about importlib by Brett Cannon · 10 years ago
  76. a83ade1 #21300: fix typo by R David Murray · 10 years ago
  77. e252446 #21300: Clean up the docs for the email "policy" arguments. by R David Murray · 11 years ago
  78. 5280d2e asyncio docs: ProactorEventLoop does not support SSL. by Guido van Rossum · 11 years ago
  79. d8ea56d Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 11 years ago
  80. 024c5ee Document the subprocess Popen.args attribute (issue21353) by Gregory P. Smith · 11 years ago
  81. 43e7cd3 Issue #21026: Augment site doc based on experiments. Patch by Carol Willing. by Terry Jan Reedy · 11 years ago
  82. ae25f46 #18243: Remove obsolete cautionary note from email mktime_tz docs. by R David Murray · 11 years ago
  83. bddecc3 Issue #21232: Replace .splitlines arg '1' with 'keepends=True'. by Terry Jan Reedy · 11 years ago
  84. aad7cc9 Clarify BROWSER envar behavior in webbrowser.py. Noted by David Turner. Closes #21248 by Senthil Kumaran · 11 years ago
  85. 8b4a272 Correct the URL in the http.client example. Noted by Evens Fortuné. Closes #21229 by Senthil Kumaran · 11 years ago
  86. cad2bf2 Address issue 18229 - Explain http.server.BaseHTTPRequestHandler's .headers attribute further. by Senthil Kumaran · 11 years ago
  87. 7f84d1e #18566: Whitespace by Terry Jan Reedy · 11 years ago
  88. 6ac4240 Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal. by Terry Jan Reedy · 11 years ago
  89. 65425b4 Issue #21245: updated documentation on exception() method and function. by Vinay Sajip · 11 years ago
  90. fe0e108 #15104: add backtick code markup. by R David Murray · 11 years ago
  91. 061cb3b #15104: improve the discussion of __main__. by R David Murray · 11 years ago
  92. 44da19a #18518: mention that including a return statement changes/breaks the behaviour by Andrew Kuchling · 11 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 · 11 years ago
  94. 604453c #21169: add comment and doc update for getpass change. by R David Murray · 11 years ago
  95. f98021c Issue #21170: Removed invalid parameter names from unittest doc. by Terry Jan Reedy · 11 years ago
  96. 222ef82 fix verb (closes #21174) by Benjamin Peterson · 11 years ago
  97. 6d6ec25 merge from 3.3 by Senthil Kumaran · 11 years ago
  98. f5c3405 minor docfix (reported at docs@python.org) trace.py argument is --count not --counts by Senthil Kumaran · 11 years ago
  99. b30b34c Issue 21143: Fix typo in docs for max(). by Raymond Hettinger · 11 years ago
  100. 0bd22d4 Issue #20375: Clarify ET's parsing of comments and processing instructions. by Eli Bendersky · 11 years ago