(self, type_resolver, type_id)
| 668 | self.need_to_write_ref = False |
| 669 | |
| 670 | def _build_pyarray_serializer(self, type_resolver, type_id): |
| 671 | typecode = typeid_code.get(type_id) |
| 672 | if typecode is None: |
| 673 | return None |
| 674 | _itemsize, ftype, _type_id = typecode_dict[typecode] |
| 675 | return PyArraySerializer(type_resolver, ftype, type_id) |
| 676 | |
| 677 | def _build_ndarray_serializer(self, type_resolver, type_id): |
| 678 | if np is None: |
no test coverage detected