import asyncio async def set_after(fut, delay, value): # Sleep for *delay* seconds. await asyncio.sleep(delay) # Set *value* as a result of *fut* Future. print(fut._state) fut.set_result(value) print(fut._state) async def main(): # Get the current event loop. loop = asyncio.get_running_loop() # Create a new Future object. # 我在这里设置了断点 想看看 future 对象的状态什么时候 哪个代码把他置成 pending 了 fut = loop.create_future() print(fut._state) # Run "set_after()" coroutine in a parallel Task. # We are using the low-level "loop.create_task()" API here because # we already have a reference to the event loop at hand. # Otherwise we could have just used "asyncio.create_task()". loop.create_task( set_after(fut, 1, '... world')) print(fut._state) print('hello ...') # Wait until *fut* has a result (1 second) and print it. print(await fut) asyncio.run(main()) 断点如上面源码注释那样。 我已经实现把 vscode launch.json justMyCode 设置成 false 了。 即便如此,我在一步步 step into 的时候。
# 从上面一步步 step into 下去遇到在 base_events.py 成员函数 # 这个成员函数没有用装饰器 def create_future(self): """Create a Future object attached to the loop.""" return futures.Future(loop=self) # 跳转到同一个文件下的 def get_debug(self): return self._debug # 再次 step into 跳转回来 def create_future(self): """Create a Future object attached to the loop.""" return futures.Future(loop=self) # 再次 step into 回到最开始的断点处 fut = loop.create_future() 我是在 windows ,下面用 vscode 调试的,python3.9
之前也遇到类似的情况,step into 会跳转一个我完全不理解的地方,看不出来是谁调用的。。 请教一下 这个原因是什么呢?还有我怎么样才能看到真正的一步步执行的流程。(我现在还是不知道 future 什么时候被设置了 pending 状态)
