(self, ctx, display_result=True)
| 33 | |
| 34 | class BoolFunctor(object): |
| 35 | def debug_str(self, ctx, display_result=True): |
| 36 | if hasattr(self, "__debug_str__"): |
| 37 | if display_result: |
| 38 | return '"%s"[%s]' % (self.__debug_str__, self(ctx)) |
| 39 | else: |
| 40 | return '"%s"' % self.__debug_str__ |
| 41 | return self.verbose_debug_str(ctx, display_result=display_result) |
| 42 | |
| 43 | def verbose_debug_str(self, ctx, display_result=True): |
| 44 | raise NotImplementedError |
no test coverage detected