Skip to content

Commit

Permalink
Move move context code into new ._context mod
Browse files Browse the repository at this point in the history
  • Loading branch information
goodboy committed May 14, 2023
1 parent 95c12c3 commit 669360a
Show file tree
Hide file tree
Showing 6 changed files with 789 additions and 738 deletions.
8 changes: 5 additions & 3 deletions tractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.

"""
tractor: structured concurrent "actors".
tractor: structured concurrent ``trio``-"actors".
"""
from exceptiongroup import BaseExceptionGroup

from ._clustering import open_actor_cluster
from ._ipc import Channel
from ._streaming import (
from ._context import (
Context,
context,
)
from ._streaming import (
MsgStream,
stream,
context,
)
from ._discovery import (
get_arbiter,
Expand Down
Loading

0 comments on commit 669360a

Please sign in to comment.