(*args, **kw)
| 1893 | def decorate_callable(self, f): |
| 1894 | @wraps(f) |
| 1895 | def _inner(*args, **kw): |
| 1896 | self._patch_dict() |
| 1897 | try: |
| 1898 | return f(*args, **kw) |
| 1899 | finally: |
| 1900 | self._unpatch_dict() |
| 1901 | |
| 1902 | return _inner |
| 1903 |
nothing calls this directly
no test coverage detected