r""" a helper function to call a method on the given RRef
(method, rref, *args, **kwargs)
| 32 | |
| 33 | |
| 34 | def _call_method(method, rref, *args, **kwargs): |
| 35 | r""" |
| 36 | a helper function to call a method on the given RRef |
| 37 | """ |
| 38 | return method(rref.local_value(), *args, **kwargs) |
| 39 | |
| 40 | |
| 41 | def _remote_method(method, rref, *args, **kwargs): |
nothing calls this directly
no outgoing calls
no test coverage detected