1. d5a6adf [3.7] bpo-34323: Enhance IocpProactor.close() log (GH-11565) by Victor Stinner · 7 years ago
  2. 0738443 bpo-33792: Add selector and proactor windows policies (GH-7487) by Miss Islington (bot) · 7 years ago
  3. 632c1cb bpo-32622: Native sendfile on windows (GH-5565) by Miss Islington (bot) · 8 years ago
  4. 7c68407 bpo-32622: Implement loop.sendfile() (#5271) by Andrew Svetlov · 8 years ago
  5. 7a6706b Fix couple typos (#4839) by Andrew Svetlov · 8 years ago
  6. 6370f34 bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) by Yury Selivanov · 8 years ago
  7. 5f841b5 bpo-32193: Convert asyncio to async/await usage (#4753) by Andrew Svetlov · 8 years ago
  8. 4271dfd bpo-32154: Remove asyncio.selectors (#4605) by Victor Stinner · 8 years ago
  9. a10dc3e asyncio: use directly socket.socketpair() (#4597) by Victor Stinner · 8 years ago
  10. 525f40d bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) by Antoine Pitrou · 8 years ago
  11. a836362 Issue #28448: Fix C implemented asyncio.Future didn't work on Windows by INADA Naoki · 9 years ago
  12. 7661db6 Issue #27041: asyncio: Add loop.create_future method by Yury Selivanov · 9 years ago
  13. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 9 years ago
  14. 59eb9a4 asyncio: async() function is deprecated in favour of ensure_future(). by Yury Selivanov · 10 years ago
  15. 5d44c08 Issue #23353, asyncio: Workaround CPython bug #23353 by Victor Stinner · 11 years ago
  16. 1241ecc Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private by Victor Stinner · 11 years ago
  17. 47cd10d asyncio: sync with Tulip by Victor Stinner · 11 years ago
  18. 41063d2 asyncio, Tulip issue 204: Fix IocpProactor.recv() by Victor Stinner · 11 years ago
  19. 24dfa3c Issue #23095, asyncio: Fix _WaitHandleFuture.cancel() by Victor Stinner · 11 years ago
  20. e0fd157 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine by Victor Stinner · 11 years ago
  21. a19b7b3 asyncio: Fix ProactorEventLoop.start_serving_pipe() by Victor Stinner · 11 years ago
  22. 3d2256f Issue #23293, asyncio: Cleanup IocpProactor.close() by Victor Stinner · 11 years ago
  23. 2b77c54 asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() by Victor Stinner · 11 years ago
  24. 7ffa2c5 Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() by Victor Stinner · 11 years ago
  25. 752aba7 asyncio: IocpProactor.close() doesn't cancel anymore futures which are already by Victor Stinner · 11 years ago
  26. 1ca9392 Issue #23095, asyncio: IocpProactor.close() must not cancel pending by Victor Stinner · 11 years ago
  27. d0a28de Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() by Victor Stinner · 11 years ago
  28. 4bf22e0 asyncio: Close the transport on subprocess creation failure by Victor Stinner · 11 years ago
  29. 15cc678 asyncio: Truncate to 80 columns by Victor Stinner · 11 years ago
  30. 4d825b4 asyncio: IocpProactor.wait_for_handle() test now also checks the result of the by Victor Stinner · 11 years ago
  31. 1b9763d asyncio: sync with Tulip by Victor Stinner · 11 years ago
  32. b261475 asyncio: sync with Tulip by Victor Stinner · 11 years ago
  33. 313a980 asyncio: sync with Tulip by Victor Stinner · 11 years ago
  34. 42d3bde asyncio, tulip issue 196: ProactorIocp._register() now registers the overlapped by Victor Stinner · 11 years ago
  35. 51e44ea Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to the by Victor Stinner · 11 years ago
  36. 65dd69a asyncio: sync with Tulip by Victor Stinner · 11 years ago
  37. 18a28dc asyncio: sync with Tulip by Victor Stinner · 11 years ago
  38. fea6a10 asyncio: sync with Tulip by Victor Stinner · 11 years ago
  39. e912e65 asyncio: sync with Tulip by Victor Stinner · 11 years ago
  40. f951d28 asyncio: sync with Tulip, add a new asyncio.coroutines module by Victor Stinner · 11 years ago
  41. c89c8a7 asyncio/windows_events.py: use more revelant names to overlapped callbacks by Victor Stinner · 12 years ago
  42. da492a8 asyncio: remove unused imports and unused variables noticed by pyflakes by Victor Stinner · 12 years ago
  43. b0b0e62 asyncio: Fix spelling and typos. by Yury Selivanov · 12 years ago
  44. ff827f0 asyncio: New error handling API. Issue #20681. by Yury Selivanov · 12 years ago
  45. 09f08fe asyncio: Remove more relics of resolution/granularity. by Guido van Rossum · 12 years ago
  46. 1506df2 Issue #20455: Add a resolution attribute to IocpProactor (1 ms) by Victor Stinner · 12 years ago
  47. f2e1768 Issue #20455: asyncio: use the same code to round a timeout than the selectors by Victor Stinner · 12 years ago
  48. 73f10fd asyncio: Fix _make_subprocess_transport(): pass extra value to the constructor. by Victor Stinner · 12 years ago
  49. 0742cae Merge latest Tulip into asyncio by Andrew Svetlov · 12 years ago
  50. 7de2646 Cleanup properly proactor event loop by Victor Stinner · 12 years ago
  51. 71196e7 Issue #19740: Use WaitForSingleObject() instead of trusting TimerOrWaitFired. by Richard Oudkerk · 12 years ago
  52. 0eaa5ac asyncio: Refactor SIGCHLD handling. By Anthony Baire. by Guido van Rossum · 12 years ago
  53. a8d630a asyncio: Various style nits. by Guido van Rossum · 12 years ago
  54. 5969128 asyncio: Add support for running subprocesses on Windows with the IOCP event loop (Richard Oudkerk). by Guido van Rossum · 12 years ago
  55. 90fb914 asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). by Guido van Rossum · 12 years ago
  56. fc29e0f Rename the logger to plain "logger". by Guido van Rossum · 12 years ago
  57. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 12 years ago