1. 04356e1 Issue #24487: Rename async() -> ensure_future() in asyncio docs. by Yury Selivanov · 9 years ago
  2. 1096f76 Issue #24509: Clarify Handle.cancel() and loop.call_* methods. by Yury Selivanov · 9 years ago
  3. bb96134 asyncio.docs: Use less confusing title by Yury Selivanov · 9 years ago
  4. 7185461 docs/asyncio: Document set_task_factory/get_task_factory by Yury Selivanov · 9 years ago
  5. 8370496 asyncio: add a note about (non) thread safety in each class by Victor Stinner · 9 years ago
  6. bdd574d asyncio doc: annotate coroutine on coroutine functions and methods by Victor Stinner · 9 years ago
  7. 756f0b1 Fix asyncio doc typo. by R David Murray · 10 years ago
  8. a092a61 asyncio doc: fix section of event loop examples by Victor Stinner · 10 years ago
  9. 4d5115c asyncio doc: call_soon() does not call immediatly the callback. Patch written by Victor Stinner · 10 years ago
  10. 8464c24 asyncio doc: explain how to pass keywords to callbacks (functools.partial) by Victor Stinner · 10 years ago
  11. b556399 Issue #22808: Link to the correct time method in BaseEventLoop.call_at(). by Berker Peksag · 10 years ago
  12. 2cef300 asyncio doc: fix typo in an example by Victor Stinner · 10 years ago
  13. 7f314ed asyncio doc: write simpler examples to introduce asyncio by Victor Stinner · 10 years ago
  14. 33f6abe asyncio doc: reformat create_server() doc by Victor Stinner · 10 years ago
  15. c7edffd asyncio doc: add UDP client and server examples by Victor Stinner · 10 years ago
  16. ccd8e34 asyncio doc: socket.socketpair() is not available on Windows yet by Victor Stinner · 10 years ago
  17. 04e6df3 asyncio doc: add examples showing the 3 ways to wait for data from an open by Victor Stinner · 10 years ago
  18. 6888b96 asyncio doc: cleanup Hello World examples by Victor Stinner · 10 years ago
  19. 9c1dba2 Revert #22251 by Berker Peksag · 10 years ago
  20. 3749404 Issue #22251: Fix ReST markup to avoid errors building docs. by Berker Peksag · 10 years ago
  21. 41f3c3f Closes #22275: asyncio: enhance documentation of OS support by Victor Stinner · 10 years ago
  22. d84fd73 Issue #22063: Fix asyncio documentation of socket and pipe operations regarding by Victor Stinner · 10 years ago
  23. 337e03f Issue #22112, asyncio doc: replace loop.create_task(coro) with by Victor Stinner · 10 years ago
  24. ec2ce09 Issue #22063: Mention in asyncio documentation that socket operations require by Victor Stinner · 10 years ago
  25. ca4f343 Fix incomplete sentence in asyncio docs. by Andrew Svetlov · 10 years ago
  26. 9ff4180 Asyncio doc fixes: spelling, grammar, duplication. by Terry Jan Reedy · 10 years ago
  27. 4bfb14a asyncio: Server.close() leaves client sockets open by Victor Stinner · 10 years ago
  28. 8ebeb03 asyncio: improve the documentation of servers by Victor Stinner · 10 years ago
  29. aea8229 Issue #21680: Document asyncio event loops by Victor Stinner · 10 years ago
  30. 530ef2f Update asyncio documentation by Victor Stinner · 10 years ago
  31. 63b21a8 Closes #21921: Fix ResourceWarning in the asyncio examples: close the event by Victor Stinner · 10 years ago
  32. f328c7d asyncio, Tulip issue 171: BaseEventLoop.close() now raises an exception if the by Victor Stinner · 10 years ago
  33. 62511fd asyncio: document the debug mode by Victor Stinner · 10 years ago
  34. 7b7120e asyncio: Enable the debug mode of event loops when the PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  35. d143209 Tulip issue 83: document more asyncio functions in docstrings by Victor Stinner · 10 years ago
  36. 64d750b asyncio: Fix pyflakes errors by Victor Stinner · 10 years ago
  37. bb2fc5b Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop by Victor Stinner · 10 years ago
  38. f9e49dd Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio by Victor Stinner · 10 years ago
  39. a5b257a Issue #21454: Fix asyncio.BaseEventLoop.connect_read_pipe doc by Victor Stinner · 10 years ago
  40. 984600f Issue #21006: asyncio doc: reorganize subprocess doc by Victor Stinner · 10 years ago
  41. c5e075f Issue #20913: improve the SSL security considerations to first advocate using create_default_context(). by Antoine Pitrou · 10 years ago
  42. 3732ed2 Merge in all documentation changes since branching 3.4.0rc1. by Larry Hastings · 10 years ago
  43. 53281b1 asyncio.docs: Document subprocess_exec and subprocess_shell. Issue #20694. by Yury Selivanov · 10 years ago
  44. 37f15bc asyncio.docs: Improve wordings; add a note to the Coroutines section. Issue #20706 by Yury Selivanov · 10 years ago
  45. 43ee1c1 asyncio.docs: Document Error Handling API and asyncio.Handle by Yury Selivanov · 10 years ago
  46. 1415e25 asyncio doc: remove reference to _DEBUG (now replaced with PYTHONASYNCIODEBUG by Victor Stinner · 10 years ago
  47. 0f3e6bc asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 10 years ago
  48. a6919aa asyncio: document new create_unix_connection() and create_unix_server() methods by Victor Stinner · 10 years ago
  49. fd9d374 Issue #20493: Document that asyncio should not exceed one day by Victor Stinner · 10 years ago
  50. 1b0580b ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if by Victor Stinner · 10 years ago
  51. ad88d7a Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors. by Larry Hastings · 10 years ago
  52. 136fea2 More complete documentation of event loops and policies. by Eli Bendersky · 10 years ago
  53. b73c833 Various formatting & grammar fixes in asyncio* docs. by Eli Bendersky · 10 years ago
  54. c1567df asyncio doc: document missing event loop methods by Victor Stinner · 10 years ago
  55. 85310a5 Issue #20505: Remove resolution and _granularity from selectors and asyncio by Victor Stinner · 10 years ago
  56. 3bc647c Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it by Victor Stinner · 11 years ago
  57. 0844438 asyncio: document the new asyncio.subprocess module by Victor Stinner · 11 years ago
  58. 9592edb asyncio doc: add "asyncio-" prefix to references by Victor Stinner · 11 years ago
  59. 45b27ed asyncio doc: document the granularity of the event loop by Victor Stinner · 11 years ago
  60. eecbbad Fix doc reference to OS X 10.9 Mavericks. by Ned Deily · 11 years ago
  61. 041ff9b asyncio doc: list Windows and Mac OS X limitations and explain how to work by Victor Stinner · 11 years ago
  62. eedf1c1 asyncio doc: subprocess_exec/subprocess_shell are not available on Windows by Victor Stinner · 11 years ago
  63. 8b86348 asyncio: document add_signal_handler/remove_signal_handler, add an example for by Victor Stinner · 11 years ago
  64. 669eeaf Merge latest Tulip into asyncio by Victor Stinner · 11 years ago
  65. f67255a Issue #20311: asyncio: Add a granularity attribute to BaseEventLoop: maximum by Victor Stinner · 11 years ago
  66. 8c462c5 asyncio doc: move AbstractServer to the event loop page by Victor Stinner · 11 years ago
  67. c8ea813 asyncio doc: link create_connection() to open_connection() and create_server() by Victor Stinner · 11 years ago
  68. 59759ff asyncio doc: replace "coroutine" with "coroutine object" or "coroutine function" by Victor Stinner · 11 years ago
  69. 6a14381 Fix Sphinx markup for asyncio modules so :mod:`asyncio` links work. by R David Murray · 11 years ago
  70. dbd8950 asyncio doc: rewrite the callback hello world to use call_soon() instead of a by Victor Stinner · 11 years ago
  71. 99c2ab4 asyncio doc: oh, asyncio module has its own Future class by Victor Stinner · 11 years ago
  72. afbf827 asyncio doc: fix definition of stop() method by Victor Stinner · 11 years ago
  73. 0c6f1ca asyncio doc: write a complete TCP echo example, client and server by Victor Stinner · 11 years ago
  74. 3e09e32 asyncio doc: move coroutine example to the Task page by Victor Stinner · 11 years ago
  75. ea3183f Split asyncio documentation into subfiles by Victor Stinner · 11 years ago