Skip to content

Commit f32b439

Browse files
committed
restore gather as async to fix tests
1 parent bdb94fe commit f32b439

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

asyncio/funcs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def remove(t):
9292
pass
9393

9494

95-
def gather(*aws, return_exceptions=False):
95+
# CIRCUITPY-CHANGE: async
96+
async def gather(*aws, return_exceptions=False):
9697
# CIRCUITPY-CHANGE: doc
9798
"""Run all *aws* awaitables concurrently. Any *aws* that are not tasks
9899
are promoted to tasks.

0 commit comments

Comments
 (0)