Expose channel in public api

drop_main_kwarg
Tyler Goodlet 2018-07-17 11:57:27 -04:00
parent 64cbb922dc
commit 9571f60a6d
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ from functools import partial
import trio
from .log import get_console_log, get_logger, get_loglevel
from ._ipc import _connect_chan
from ._ipc import _connect_chan, Channel
from ._actor import (
Actor, _start_actor, Arbiter, get_arbiter, find_actor
)
@ -18,7 +18,7 @@ from ._portal import RemoteActorError
__all__ = [
'current_actor', 'find_actor', 'get_arbiter', 'open_nursery',
'RemoteActorError',
'RemoteActorError', 'Channel',
]