(self, gid)
| 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) |
| 364 | archive = op.eval() |
| 365 | gid = archive.get_uint64() |
| 366 | fp = io.BytesIO(archive.get_bytes()) |
| 367 | succ_cache = msgpack.load(fp, use_list=False) |
| 368 | return gid, succ_cache |
| 369 | |
| 370 | def _get_pred_cache(self, gid): |
| 371 | op = dag_utils.report_graph(self._graph, types_pb2.PRED_BY_GID, gid=gid) |
nothing calls this directly
no test coverage detected