1. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 8 years ago
  2. 4357cf6 Another asyncio sync. by Yury Selivanov · 8 years ago
  3. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 8 years ago
  4. 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 8 years ago
  5. c1cf296 asyncio: Remove asyncio.timeout() context manager. by Yury Selivanov · 8 years ago
  6. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  7. 2ba8ece asyncio: allow None as wait timeout by Victor Stinner · 9 years ago
  8. 9d976fa Sync with asyncio by Andrew Svetlov · 9 years ago
  9. c07b16b Sync with asyncio repo by Andrew Svetlov · 9 years ago
  10. 0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop by Yury Selivanov · 9 years ago
  11. d59bba8 asyncio: Drop "value" parameter from Task._step method. by Yury Selivanov · 9 years ago
  12. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  13. 0013cce asyncio: Sync with github by Yury Selivanov · 9 years ago
  14. a4afc48 asyncio: Optimize Task._wakeup by Yury Selivanov · 9 years ago
  15. ade0412 asyncio: Optimize asyncio.sleep(0) by Yury Selivanov · 9 years ago
  16. 601953b Docs and one small improvement for issue #25304, by Vincent Michel. by Guido van Rossum · 9 years ago
  17. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 9 years ago
  18. 620279b asyncio: ensure_future() now understands awaitables by Yury Selivanov · 9 years ago
  19. 2339833 Issue #24867: Fix Task.get_stack() for 'async def' coroutines by Yury Selivanov · 9 years ago
  20. 4c0a09a Revert da29a94367b2 by Yury Selivanov · 9 years ago
  21. 6b3f29c asyncio: Fix code style by Yury Selivanov · 9 years ago
  22. eaf16ab asyncio: sync with github by Victor Stinner · 9 years ago
  23. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 9 years ago
  24. 1ad08a5 asyncio: Drop some useless code from tasks.py. by Yury Selivanov · 9 years ago
  25. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  26. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 9 years ago
  27. 2934262 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  28. 922bc2c Closes #23219: cancelling asyncio.wait_for() now cancels the task by Victor Stinner · 10 years ago
  29. 3531d90 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  30. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 10 years ago
  31. fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 10 years ago
  32. d87de83 Closes #22475: asyncio doc, fix Task.get_stack() doc by Victor Stinner · 10 years ago
  33. 8e069d5 Apply asyncio Task English fixes to docstrings as well. by R David Murray · 10 years ago
  34. 59e0802 asyncio, Tulip issue 201: Fix a race condition in wait_for() by Victor Stinner · 10 years ago
  35. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  36. e931f7b Issue #21163: Fix "destroy pending task" warning in test_wait_errors() by Victor Stinner · 10 years ago
  37. f03b3c7 Issue #21163, asyncio: Ignore "destroy pending task" warnings for private tasks by Victor Stinner · 10 years ago
  38. 770e48d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  39. 737c34f asyncio: sync with Tulip by Victor Stinner · 10 years ago
  40. c39ba7d asyncio: sync with Tulip by Victor Stinner · 10 years ago
  41. 896a25a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  42. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  43. 2dba23a asyncio: sync with Tulip by Victor Stinner · 10 years ago
  44. 98b6391 Issue #21163: BaseEventLoop.run_until_complete() and test_utils.run_briefly() by Victor Stinner · 10 years ago
  45. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 10 years ago
  46. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  47. bbd96c6 asyncio, Tulip issue 137: In debug mode, add the traceback where the coroutine by Victor Stinner · 10 years ago
  48. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  49. df29c4a asyncio: repr(Task) now also contains the line number even if the coroutine is by Victor Stinner · 10 years ago
  50. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 10 years ago
  51. 8d3e02e asyncio: Set __qualname__ attribute of CoroWrapper in @coroutine decorator on by Victor Stinner · 10 years ago
  52. bc434e2 asyncio: Task.__repr__() now also handles CoroWrapper by Victor Stinner · 10 years ago
  53. 307bccc asyncio: Tulip issue 173: Enhance repr(Handle) and repr(Task) by Victor Stinner · 10 years ago
  54. db74d98 Issue #21596: asyncio.wait(): mention that the sequence of futures must not by Victor Stinner · 10 years ago
  55. 8d21357 Issue #21601: Document asyncio.Task.cancel(). Initial patch written by Vajrasky by Victor Stinner · 10 years ago
  56. 94ba146 asyncio: Add __weakref__ slots to Handle and CoroWrapper. Upstream issue #166. by Guido van Rossum · 10 years ago
  57. 83c1ddd asyncio: Be careful accessing instance variables in __del__ (closes #21340). by Guido van Rossum · 10 years ago
  58. 0cbc768 asyncio: Add gi_{frame,running,code} properties to CoroWrapper (upstream #163). by Guido van Rossum · 10 years ago
  59. 09cc169 asyncio.tasks: Make sure CoroWrapper.send proxies one argument correctly by Yury Selivanov · 10 years ago
  60. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 10 years ago
  61. 4bd652a asyncio: Document Task.cancel() properly. by Victor Stinner · 10 years ago
  62. d74ac82 asyncio, Tulip issue 158: Task._step() now also sets self to None if an by Victor Stinner · 11 years ago
  63. da492a8 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 11 years ago
  64. 7ef60cd asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests. by Victor Stinner · 11 years ago
  65. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 11 years ago
  66. b58f053 asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fixes issue #20566. by Guido van Rossum · 11 years ago
  67. eb74876 asyncio, Tulip issue 131: as_completed() and wait() now raises a TypeError if by Victor Stinner · 11 years ago
  68. 622be34 asyncio.tasks: Fix as_completed, gather & wait to work with duplicate coroutines by Yury Selivanov · 11 years ago
  69. f317cb7 asyncio.tasks.gather: Fix docstring by Yury Selivanov · 11 years ago
  70. 48c66c3 asyncio: wait_for() now accepts None as timeout (Victor Stinner). by Guido van Rossum · 11 years ago
  71. 421e49b asyncio: wait_for() now cancels the future on timeout. Patch written by Gustavo by Victor Stinner · 11 years ago
  72. e1f5544 asyncio: Reincarnate CoroWrapper's docstring as a comment. by Guido van Rossum · 11 years ago
  73. bac7793 asyncio: Fix CoroWrapper (fix my previous commit) by Victor Stinner · 11 years ago
  74. 4d7a29c asyncio: Fix a typo in CoroWrapper by Victor Stinner · 11 years ago
  75. 68816ef Export asyncio.iscoroutine[function]. by Guido van Rossum · 11 years ago
  76. 1a605ed asyncio: Add Task.current_task() class method. by Guido van Rossum · 11 years ago
  77. de3a136 asyncio: Add 'shield' to __all__. by Guido van Rossum · 11 years ago
  78. 2b430b8 asyncio: Fold some long lines. by Guido van Rossum · 11 years ago
  79. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  80. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago