Find the session method dynamically and cache for later.
(self, method_name)
| 55 | } |
| 56 | |
| 57 | def __getattr__(self, method_name): |
| 58 | """Find the session method dynamically and cache for later.""" |
| 59 | method = _MethodWrapper(self, method_name) |
| 60 | self.__dict__[method_name] = method |
| 61 | return method |
nothing calls this directly
no test coverage detected