import asyncio import pytest from async_timeout import timeout def with_timeout(t): def wrapper(corofunc): async def run(*args, **kwargs): with timeout(t): ...
確定! 回上一頁