asyncio: Add BoundedSemaphore to export list in locks.__all__.
This commit is contained in:
parent
8a67f52463
commit
a58d1c32f8
|
@ -1,6 +1,6 @@
|
|||
"""Synchronization primitives."""
|
||||
|
||||
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore']
|
||||
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
|
||||
|
||||
import collections
|
||||
|
||||
|
|
Loading…
Reference in New Issue