(cls, what)
| 144 | |
| 145 | @classmethod |
| 146 | def has(cls, what): |
| 147 | try: |
| 148 | return cls._eval_cache[what] |
| 149 | except KeyError: |
| 150 | ret = cls._eval_cache[what] = cls.call('has', what) |
| 151 | return ret |
| 152 | |
| 153 | @classmethod |
| 154 | def call(cls, func, *args): |
no test coverage detected