1. 0baa72f bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) by Andrew Svetlov · 6 years ago
  2. fdccfe0 bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171) by Yury Selivanov · 6 years ago
  3. 22feeb8 bpo-32643: Drop support for a few private Task and Future APIs. (#5293) by Yury Selivanov · 7 years ago
  4. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  5. e0aef4f bpo-31721: Allow Future._log_traceback to only be set to False (#5009) by Yury Selivanov · 7 years ago
  6. 0cf16f9 bpo-32363: Disable Task.set_exception() and Task.set_result() (#4923) by Yury Selivanov · 7 years ago
  7. ca9b36c bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992) by Yury Selivanov · 7 years ago
  8. f74ef45 bpo-32311: Implement asyncio.create_task() shortcut (#4848) by Andrew Svetlov · 7 years ago
  9. 8874342 bpo-32258: Replace 'yield from' to 'await' in asyncio docs (#4779) by Andrew Svetlov · 7 years ago
  10. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 7 years ago
  11. 3f438a9 asyncio: Remove asyncio/compat.py (#4606) by Victor Stinner · 7 years ago
  12. c16bace asyncio: Remove unused Future._tb_logger attribute (#4596) by Victor Stinner · 7 years ago
  13. 921e943 bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314) by Antoine Pitrou · 7 years ago
  14. 22b1128 bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (#4319) by Antoine Pitrou · 7 years ago
  15. 7ce1c6f bpo-30508: Don't log exceptions if Task/Future "cancel()" method called (#2050) by Yury Selivanov · 7 years ago
  16. 3e2ad8e bpo-29617: Remove Python 3.3 support from asyncio (GH-232) by INADA Naoki · 7 years ago
  17. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 8 years ago
  18. 01c521b asyncio: Increase asyncio.Future test coverage; test both implementations. by Yury Selivanov · 8 years ago
  19. a836362 Issue #28448: Fix C implemented asyncio.Future didn't work on Windows by INADA Naoki · 8 years ago
  20. c411a7d Issue #28452: Remove _asyncio._init_module function by INADA Naoki · 8 years ago
  21. 9f2ce25 Issue #28428: Rename _futures module to _asyncio. by INADA Naoki · 8 years ago
  22. 9e4e38e Issue #26801: Added C implementation of asyncio.Future. by INADA Naoki · 8 years ago
  23. 7b3b3dc Merge asyncio upstream. by Guido van Rossum · 8 years ago
  24. 1140a03 Rename Future._blocking to _asyncio_future_blocking. by Guido van Rossum · 8 years ago
  25. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 8 years ago
  26. 1bd0307 asyncio: Prevent StopIteration from being thrown into a Future by Yury Selivanov · 8 years ago
  27. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 8 years ago
  28. 5d7e3b6 asyncio: Cleanup Future API by Yury Selivanov · 9 years ago
  29. 841d9ee Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. by Guido van Rossum · 9 years ago
  30. 71080fc asyncio: Add asyncio.compat module by Victor Stinner · 9 years ago
  31. 1af2bf7 asyncio: Support PEP 492. Issue #24017. by Yury Selivanov · 9 years ago
  32. 0a9933e Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions without __name__. by Guido van Rossum · 9 years ago
  33. 978a9af Issue #23243, asyncio: Emit a ResourceWarning when an event loop or a transport by Victor Stinner · 9 years ago
  34. 587feb1 Issue #23209: Break some reference cycles in asyncio. Patch written by Martin by Victor Stinner · 10 years ago
  35. 70db9e4 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  36. fe22e09 asyncio: Initialize more Future and Task attributes in the class definition to by Victor Stinner · 10 years ago
  37. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  38. 662fd5f asyncio: Fix formatting of the "Future exception was never retrieved" in by Victor Stinner · 10 years ago
  39. 313a980 asyncio: sync with Tulip by Victor Stinner · 10 years ago
  40. a9acbe8 Closes #21886, #21447: Fix a race condition in asyncio when setting the result by Victor Stinner · 10 years ago
  41. 80f53aa asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and by Victor Stinner · 10 years ago
  42. 975735f asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle by Victor Stinner · 10 years ago
  43. a02f81f asyncio: Log an error if a Task is destroyed while it is still pending by Victor Stinner · 10 years ago
  44. b4c9388 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 10 years ago
  45. 569efa2 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 10 years ago
  46. 9572898 asyncio: Future.set_exception(exc) should instantiate exc if it is a class. by Victor Stinner · 10 years ago
  47. e40c078 Issue #19967: Defer the formating of the traceback in asyncio.Future destructor by Victor Stinner · 11 years ago
  48. 9ba75db asyncio: Clean up formatting. by Guido van Rossum · 11 years ago
  49. 4c3c699 Close #19967: Thanks to the PEP 442, asyncio.Future can use a destructor in by Victor Stinner · 11 years ago
  50. 7a46564 asyncio: Pass cancellation from wrapping Future to wrapped Future. By Saúl Ibarra Corretgé (mostly). by Guido van Rossum · 11 years ago
  51. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 11 years ago
  52. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago