mtest: remove pointless try/except from try_wait_one

asyncio.wait does not return an asyncio.TimeoutError, so there is no
exception to catch.
pull/8569/head
Paolo Bonzini 4 years ago committed by Jussi Pakkanen
parent 20a90cf709
commit 13d3fbbf3e
  1. 8
      mesonbuild/mtest.py

@ -1129,11 +1129,9 @@ def check_testdata(objs: T.List[TestSerialisation]) -> T.List[TestSerialisation]
# Custom waiting primitives for asyncio
async def try_wait_one(*awaitables: T.Any, timeout: T.Optional[T.Union[int, float]]) -> None:
try:
await asyncio.wait(awaitables,
timeout=timeout, return_when=asyncio.FIRST_COMPLETED)
except asyncio.TimeoutError:
pass
"""Wait for completion of one of the given futures, ignoring timeouts."""
await asyncio.wait(awaitables,
timeout=timeout, return_when=asyncio.FIRST_COMPLETED)
async def queue_iter(q: 'asyncio.Queue[T.Optional[str]]') -> T.AsyncIterator[str]:
while True:

Loading…
Cancel
Save