-
Notifications
You must be signed in to change notification settings - Fork 68
AsyncioAlternativesTimeline
Paul Sokolovsky edited this page Nov 27, 2017
·
4 revisions
- 2014-04-18 First commit of uasyncio: https://github.com/micropython/micropython-lib/commit/80cea91b984853a6aeea0ccef517d0c556b1641a
- 2014-04-25 Criticism of asyncio's design where native coroutines are "2nd class" and forced being wrapped in "Task" objects with Future-like interface: https://groups.google.com/d/msg/python-tulip/zfMQIUcIR-0/XDGEfWdCkpgJ
- 2015-04-20 uasyncio adds StreamWriter.write() as a coroutine method: https://github.com/micropython/micropython-lib/commit/02daa74b245867dff5d51abb70ce89a9cfefa1e5
- 2015-06-01 uasyncio renamed StreamWriter.write() to StreamWriter.awrite() to emphasize different semantics from asyncio: https://github.com/micropython/micropython-lib/commit/d0d2810b0cf940ee56e246a9ce9ffffc866229f0
- 2015-06-11 Criticism of asyncio's StreamWriter.write() method, based on experiences developing uasyncio, on the python-tulip mailing list: https://groups.google.com/d/msg/python-tulip/JA0-FC_pliA/knMvVGxp2WsJ
- 2015-10-11 Curio first commit: https://github.com/dabeaz/curio/graphs/contributors
- 2016-10-23 Curio discussion on python-tulip list: https://groups.google.com/d/msg/python-tulip/7iOVVM6eQjg/GE2YOTROBgAJ
- 2016-11-05 "Some thoughts on asynchronous API design in a post-async/await world" blog posted: https://vorpus.org/blog/some-thoughts-on-asynchronous-api-design-in-a-post-asyncawait-world/
- 2017-01-08 Trio first commit: https://github.com/python-trio/trio/graphs/contributors