diff options
author | Guido van Rossum <guido@python.org> | 2013-11-25 06:32:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-11-25 06:32:09 (GMT) |
commit | a58d1c32f85a77766ff4d04a30938b021eb3b820 (patch) | |
tree | 027a560466112c3bada5204133a4e1794a149ce8 /Lib/asyncio/locks.py | |
parent | 8a67f5246308619ecf6e4335d4e412b705efd6e3 (diff) | |
download | cpython-a58d1c32f85a77766ff4d04a30938b021eb3b820.zip cpython-a58d1c32f85a77766ff4d04a30938b021eb3b820.tar.gz cpython-a58d1c32f85a77766ff4d04a30938b021eb3b820.tar.bz2 |
asyncio: Add BoundedSemaphore to export list in locks.__all__.
Diffstat (limited to 'Lib/asyncio/locks.py')
-rw-r--r-- | Lib/asyncio/locks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index 4b0ce50..2d458a9 100644 --- a/Lib/asyncio/locks.py +++ b/Lib/asyncio/locks.py @@ -1,6 +1,6 @@ """Synchronization primitives.""" -__all__ = ['Lock', 'Event', 'Condition', 'Semaphore'] +__all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore'] import collections |