X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=deferred_operand.py;h=9edbb9e8072b451ffc13f447235e3da5505bcff6;hb=2966ecdb8c49266d491a1f75791868920d68a510;hp=df762376c1b16374440c2a5ea7cda8d568bd5e58;hpb=532df2c5b57c7517dfb3dddd8c1358fbadf8baf3;p=python_utils.git diff --git a/deferred_operand.py b/deferred_operand.py index df76237..9edbb9e 100644 --- a/deferred_operand.py +++ b/deferred_operand.py @@ -19,7 +19,8 @@ T = TypeVar('T') class DeferredOperand(ABC, Generic[T]): """A wrapper around an operand whose value is deferred until it is - needed. See subclass SmartFuture for an example usage. + needed (i.e. accessed). See the subclass :class:`SmartFuture` for + an example usage and/or a more useful patten. """ @abstractmethod