(self, meth_name, action, handle)
| 319 | |
| 320 | class FakeMethod: |
| 321 | def __init__(self, meth_name, action, handle): |
| 322 | self.meth_name = meth_name |
| 323 | self.handle = handle |
| 324 | self.action = action |
| 325 | |
| 326 | def __call__(self, *args): |
| 327 | return self.handle(self.meth_name, self.action, *args) |