8000 Add BoundedSemaphore to export list in locks.__all__. · Python-Repository-Hub/asyncio@1d4bfc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 1d4bfc2

Browse files
committed
Add BoundedSemaphore to export list in locks.__all__.
1 parent cc786b7 commit 1d4bfc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncio/locks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Synchronization primitives."""
22

3-
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore']
3+
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
44

55
import collections
66

0 commit comments

Comments
 (0)
0