(self)
| 735 | |
| 736 | class FutureInt64(Future): |
| 737 | def wait(self): |
| 738 | self.block_until_ready() |
| 739 | value = ctypes.c_int64() |
| 740 | self.capi.fdb_future_get_int64(self.fpointer, ctypes.byref(value)) |
| 741 | return value.value |
| 742 | |
| 743 | class FutureUInt64(Future): |
| 744 | def wait(self): |
nothing calls this directly
no test coverage detected