From a58d1c32f85a77766ff4d04a30938b021eb3b820 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 24 Nov 2013 22:32:09 -0800 Subject: asyncio: Add BoundedSemaphore to export list in locks.__all__. --- Lib/asyncio/locks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/asyncio/locks.py') diff --git a/Lib/asyncio/locks.py b/Lib/asyncio/locks.py index 4b0ce50b21d..2d458a9b0e3 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 -- cgit v1.2.3