Skip to content

Commit 1f9244c

Browse files
committed
Skeleton for 'asyncio.events.get_event_loop()`
1 parent be7c928 commit 1f9244c

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

asyncio/__init__.py

Whitespace-only changes.

asyncio/events.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
"""Skeleton for 'asyncio' stdlib module."""
2+
3+
4+
import asyncio
5+
6+
7+
def get_event_loop():
8+
"""Get the event loop for the current context.
9+
10+
:rtype: asyncio.AbstractEventLoop
11+
"""
12+
pass

0 commit comments

Comments
 (0)