(*args, **kw)
| 1900 | def decorate_callable(self, f): |
| 1901 | @wraps(f) |
| 1902 | def _inner(*args, **kw): |
| 1903 | self._patch_dict() |
| 1904 | try: |
| 1905 | return f(*args, **kw) |
| 1906 | finally: |
| 1907 | self._unpatch_dict() |
| 1908 | |
| 1909 | return _inner |
| 1910 |
nothing calls this directly
no test coverage detected