From 8ebc022535d1d509708aa121ff539345418c9517 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 9 Dec 2024 18:12:22 -0500 Subject: [PATCH] Add TODO for a runtime-vars passing mechanism --- tractor/_root.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tractor/_root.py b/tractor/_root.py index 51dbe5e..bcdee3e 100644 --- a/tractor/_root.py +++ b/tractor/_root.py @@ -95,6 +95,10 @@ async def open_root_actor( hide_tb: bool = True, + # TODO, a way for actors to augment passing derived + # read-only state to sublayers? + # extra_rt_vars: dict|None = None, + ) -> Actor: ''' Runtime init entry point for ``tractor``.