1 Star 0 Fork 0

yunni/python_eventloop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
02future.py 961 Bytes
一键复制 编辑 原始数据 按行查看 历史
yunni 提交于 2022-06-18 20:24 . done
import time
from time import sleep
class Awaitable(object):
def __init__(self, obj):
self.value = obj
def __await__(self):
yield self
class Task(object):
def __init__(self, coro):
self.coro = coro
self._done = False
self._result = None
def run(self):
if not self._done:
try:
x = self.coro.send(None)
except StopIteration as e:
self._result = e.value
self._done = True
else:
assert isinstance(x, Awaitable)
else:
print('task is done')
async def small_step():
print('休息一下,马上回来')
t1 = time.time()
await Awaitable((sleep, 2))
assert time.time() - t1 > 2, "睡眠时间不足"
print('努力工作中')
return 123
async def big_step():
sr = await small_step()
if __name__ == '__main__':
t = Task(big_step())
t.run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linlinstyle/python_eventloop.git
[email protected]:linlinstyle/python_eventloop.git
linlinstyle
python_eventloop
python_eventloop
master

搜索帮助