(self)
| 773 | |
| 774 | class FutureStringArray(Future): |
| 775 | def wait(self): |
| 776 | self.block_until_ready() |
| 777 | strings = ctypes.pointer(ctypes.c_char_p()) |
| 778 | count = ctypes.c_int() |
| 779 | self.capi.fdb_future_get_string_array(self.fpointer, ctypes.byref(strings), ctypes.byref(count)) |
| 780 | return list(strings[0:count.value]) |
| 781 | |
| 782 | |
| 783 | class replaceable_property(object): |
nothing calls this directly
no test coverage detected