X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=deferred_operand.py;fp=deferred_operand.py;h=9edbb9e8072b451ffc13f447235e3da5505bcff6;hb=f3dbc7dc19ba5703f8f5aa9bf8af3c491b3510f6;hp=df762376c1b16374440c2a5ea7cda8d568bd5e58;hpb=0fec151ee0b3596016d7a094af13085ef01a8bb4;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