装饰器本质上是一个Python函数[…]
python http web server 探索(二)
request和response如何实现[…]
python http web server 探索(一)
深入理解web server使用原理[…]
Python asyncio协程 - 简单等待(二)
asyncio协程 - 简单等待 as_completed[…]
Python asyncio协程 - 简单等待(一)
asyncio协程 - 简单等待[…]
Python asyncio协程 - 超时
asyncio协程 - 超时[…]
Python 3.9.0rc2现在可以开测了
Python 3.9.0rc2现在可以开测了[…]
Python asyncio协程 - gather(5)
如果 aws 序列中的任一 Task 或 Future 对象 被取消,它将被当作引发了 CancelledError 一样处理 -- 在此情况下 gather() 调用 不会 被取消。这是为了防止一个已提交的 Task/Future 被取消导致其他 Tasks/Future 也被取消。[…]
Python asyncio协程 - gather(4)
如果 gather() 被取消,所有被提交 (尚未完成) 的可等待对象也会 被取消。[…]
Python asyncio协程 - gather(3)
如果 return_exceptions 为 False (默认),所引发的首个异常会立即传播给等待 gather() 的任务。aws 序列中的其他可等待对象 不会被取消 并将继续运行。[…]