(self, /, *args, **kwargs)
| 604 | self.name = name |
| 605 | |
| 606 | def __call__(self, /, *args, **kwargs): |
| 607 | value = self.sockio.remotecall(self.oid, self.name, args, kwargs) |
| 608 | return value |
| 609 | |
| 610 | |
| 611 | # XXX KBK 09Sep03 We need a proper unit test for this module. Previously |
nothing calls this directly
no test coverage detected