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