forked from goodboy/tractor
1
0
Fork 0

Add 'open_actor_cluster' to __all__

patch-async-enter-all
overclockworked64 2021-10-16 17:31:26 +02:00
parent f1c24c7ab7
commit 4974e3efe5
No known key found for this signature in database
GPG Key ID: 0E4A3AD9DB596812
1 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@ tractor: An actor model micro-framework built on
"""
from trio import MultiError
from ._clustering import open_actor_cluster
from ._ipc import Channel
from ._streaming import (
Context,
@ -39,6 +40,7 @@ __all__ = [
'get_arbiter',
'is_root_process',
'msg',
'open_actor_cluster',
'open_nursery',
'open_root_actor',
'Portal',