Skip to content

Commit 5e3baa9

Browse files
committed
Export some names in concurrent.interpreters
1 parent 0aab07c commit 5e3baa9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Lib/concurrent/interpreters/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,18 @@
1010
is_shareable,
1111
)
1212
from ._queues import (
13-
create as create_queue,
14-
Queue, QueueEmpty, QueueFull,
13+
create as create_queue, ItemInterpreterDestroyed,
14+
Queue, QueueEmpty, QueueFull, UNBOUND, UNBOUND_ERROR, UNBOUND_REMOVE,
1515
)
1616

1717

1818
__all__ = [
1919
'get_current', 'get_main', 'create', 'list_all', 'is_shareable',
2020
'Interpreter',
2121
'InterpreterError', 'InterpreterNotFoundError', 'ExecutionFailed',
22-
'NotShareableError',
22+
'NotShareableError', 'ItemInterpreterDestroyed',
2323
'create_queue', 'Queue', 'QueueEmpty', 'QueueFull',
24+
'UNBOUND', 'UNBOUND_ERROR', 'UNBOUND_REMOVE',
2425
]
2526

2627

0 commit comments

Comments
 (0)