forked from goodboy/tractor
Expose `Channel` @ pkg level, drop `_debug.pp()` alias
parent
1102843087
commit
22c14e235e
|
@ -21,7 +21,6 @@ tractor: structured concurrent ``trio``-"actors".
|
||||||
from exceptiongroup import BaseExceptionGroup
|
from exceptiongroup import BaseExceptionGroup
|
||||||
|
|
||||||
from ._clustering import open_actor_cluster
|
from ._clustering import open_actor_cluster
|
||||||
from ._ipc import Channel
|
|
||||||
from ._context import (
|
from ._context import (
|
||||||
Context,
|
Context,
|
||||||
context,
|
context,
|
||||||
|
@ -49,7 +48,6 @@ from ._exceptions import (
|
||||||
from ._debug import (
|
from ._debug import (
|
||||||
breakpoint,
|
breakpoint,
|
||||||
pause,
|
pause,
|
||||||
pp,
|
|
||||||
pause_from_sync,
|
pause_from_sync,
|
||||||
post_mortem,
|
post_mortem,
|
||||||
)
|
)
|
||||||
|
@ -58,6 +56,7 @@ from ._root import (
|
||||||
run_daemon,
|
run_daemon,
|
||||||
open_root_actor,
|
open_root_actor,
|
||||||
)
|
)
|
||||||
|
from ._ipc import Channel
|
||||||
from ._portal import Portal
|
from ._portal import Portal
|
||||||
from ._runtime import Actor
|
from ._runtime import Actor
|
||||||
|
|
||||||
|
@ -76,6 +75,7 @@ __all__ = [
|
||||||
'context',
|
'context',
|
||||||
'current_actor',
|
'current_actor',
|
||||||
'find_actor',
|
'find_actor',
|
||||||
|
'query_actor',
|
||||||
'get_arbiter',
|
'get_arbiter',
|
||||||
'is_root_process',
|
'is_root_process',
|
||||||
'msg',
|
'msg',
|
||||||
|
@ -84,8 +84,7 @@ __all__ = [
|
||||||
'open_root_actor',
|
'open_root_actor',
|
||||||
'pause',
|
'pause',
|
||||||
'post_mortem',
|
'post_mortem',
|
||||||
'pp',
|
'pause_from_sync',
|
||||||
'pause_from_sync'
|
|
||||||
'query_actor',
|
'query_actor',
|
||||||
'run_daemon',
|
'run_daemon',
|
||||||
'stream',
|
'stream',
|
||||||
|
|
Loading…
Reference in New Issue