asyncio: Add BoundedSemaphore to export list in locks.__all__.

This commit is contained in:
Guido van Rossum 2013-11-24 22:32:09 -08:00
parent 8a67f52463
commit a58d1c32f8
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"""Synchronization primitives."""
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore']
__all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
import collections