()
| 149 | return handle |
| 150 | |
| 151 | def _clear_cache(): |
| 152 | handle = _DECORATOR_HANDLE |
| 153 | if handle is None or not handle.is_active(): |
| 154 | return |
| 155 | handle._clear_cache() |
| 156 | |
| 157 | def reset(): |
| 158 | handle = _DECORATOR_HANDLE |
nothing calls this directly
no test coverage detected