import asyncio import pytest async def internally_async_impl() -> int: return 0 def innocent_unrelated() -> int: return asyncio.run(internally_async_impl()) ...
確定! 回上一頁