X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=deferred_operand.py;h=70e9d57392dc0a0b44ba7464cf3be9ee1aa797eb;hb=1220ffcf56e968de31b62f6d0c5af250fed9028e;hp=75e98d923d5bcccc135e4d5c05415c7949fac8a9;hpb=e6f32fdd9b373dfcd100c7accb41f57d83c2f0a1;p=python_utils.git diff --git a/deferred_operand.py b/deferred_operand.py index 75e98d9..70e9d57 100644 --- a/deferred_operand.py +++ b/deferred_operand.py @@ -1,5 +1,9 @@ #!/usr/bin/env python3 +"""This is a helper class that tries to define every __dunder__ method +so as to defer that evaluation of an object as long as possible. It +is used by smart_future.py as a base class.""" + from abc import ABC, abstractmethod from typing import Any, Generic, TypeVar