(self, gid)
| 350 | return gid, node_size, node_array |
| 351 | |
| 352 | def _get_node_attr_cache(self, gid): |
| 353 | op = dag_utils.report_graph( |
| 354 | self._graph, types_pb2.NODE_ATTR_CACHE_BY_GID, gid=gid |
| 355 | ) |
| 356 | archive = op.eval() |
| 357 | gid = archive.get_uint64() |
| 358 | fp = io.BytesIO(archive.get_bytes()) |
| 359 | node_attr_cache = msgpack.load(fp, use_list=False) |
| 360 | return gid, node_attr_cache |
| 361 | |
| 362 | def _get_succ_cache(self, gid): |
| 363 | op = dag_utils.report_graph(self._graph, types_pb2.SUCC_BY_GID, gid=gid) |
nothing calls this directly
no test coverage detected