From c80f020ebc99cbb0c4e78da3d3325cecb89cf5cd Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 20 May 2024 15:47:01 -0400 Subject: [PATCH] Expose `tractor.current_ipc_ctx()` at pkg level --- tractor/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tractor/__init__.py b/tractor/__init__.py index 0f2bdd6..ad3144d 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -42,6 +42,7 @@ from ._supervise import ( from ._state import ( current_actor as current_actor, is_root_process as is_root_process, + current_ipc_ctx as current_ipc_ctx, ) from ._exceptions import ( ContextCancelled as ContextCancelled,