(self, local_init_net, local_finish_net)
| 62 | return ([read_net], ) + self.read(read_net) |
| 63 | |
| 64 | def read_record_ex(self, local_init_net, local_finish_net): |
| 65 | nets, should_stop, fields = self.read_ex( |
| 66 | local_init_net, local_finish_net) |
| 67 | if self._schema: |
| 68 | fields = from_blob_list(self._schema, fields) |
| 69 | return nets, should_stop, fields |
| 70 | |
| 71 | def read(self, read_net): |
| 72 | """Append operations to read_net that will read a batch from the |
no test coverage detected