Skip to content

Commit da4b8f9

Browse files
committed
Add basic module docstrings
1 parent a8350db commit da4b8f9

File tree

6 files changed

+25
-0
lines changed

6 files changed

+25
-0
lines changed

asyncio/core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Core
15+
====
16+
"""
1317

1418
from adafruit_ticks import ticks_ms as ticks, ticks_diff, ticks_add
1519
import sys, select, traceback

asyncio/event.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Events
15+
======
16+
"""
1317

1418
from . import core
1519

asyncio/funcs.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Functions
15+
=========
16+
"""
17+
1318

1419
from . import core
1520

asyncio/lock.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Locks
15+
=====
16+
"""
1317

1418
from . import core
1519

asyncio/stream.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Streams
15+
=======
16+
"""
1317

1418
from . import core
1519

asyncio/task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
# pylint or black.
1111
# pylint: skip-file
1212
# fmt: off
13+
"""
14+
Tasks
15+
=====
16+
"""
1317

1418
# This file contains the core TaskQueue based on a pairing heap, and the core Task class.
1519
# They can optionally be replaced by C implementations.

0 commit comments

Comments
 (0)