Skip to content

Commit

Permalink
restore gather as async to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Aug 17, 2024
1 parent bdb94fe commit f32b439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion asyncio/funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ def remove(t):
pass


def gather(*aws, return_exceptions=False):
# CIRCUITPY-CHANGE: async
async def gather(*aws, return_exceptions=False):
# CIRCUITPY-CHANGE: doc
"""Run all *aws* awaitables concurrently. Any *aws* that are not tasks
are promoted to tasks.
Expand Down

0 comments on commit f32b439

Please sign in to comment.