(self, gid)
| 376 | return gid, pred_cache |
| 377 | |
| 378 | def _get_succ_attr_cache(self, gid): |
| 379 | op = dag_utils.report_graph(self._graph, types_pb2.SUCC_ATTR_BY_GID, gid=gid) |
| 380 | archive = op.eval() |
| 381 | gid = archive.get_uint64() |
| 382 | fp = io.BytesIO(archive.get_bytes()) |
| 383 | succ_attr_cache = msgpack.load(fp, use_list=False) |
| 384 | return gid, succ_attr_cache |
| 385 | |
| 386 | def _get_pred_attr_cache(self, gid): |
| 387 | op = dag_utils.report_graph(self._graph, types_pb2.PRED_ATTR_BY_GID, gid=gid) |
nothing calls this directly
no test coverage detected