From 87de28fd885fa2da6cba908a98d3419e04ea919a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 30 Jan 2022 12:21:41 -0500 Subject: [PATCH] Slight doc string update --- tractor/msg.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tractor/msg.py b/tractor/msg.py index 461d54e..138718b 100644 --- a/tractor/msg.py +++ b/tractor/msg.py @@ -49,7 +49,9 @@ from pkgutil import resolve_name class NamespacePath(str): ''' A serializeable description of a (function) Python object location - described by the target's module path and its namespace key. + described by the target's module path and namespace key meant as + a message-native "packet" to allows actors to point-and-load objects + by absolute reference. ''' _ref: object = None