Add an edge from object ``A`` to object ``B``. I.e. ``A`` depends on ``B``.
(self, A, B)
| 50 | self.adjacent.setdefault(obj, []) |
| 51 | |
| 52 | def add_edge(self, A, B): |
| 53 | """Add an edge from object ``A`` to object ``B``. |
| 54 | |
| 55 | I.e. ``A`` depends on ``B``. |
| 56 | """ |
| 57 | self[A].append(B) |
| 58 | |
| 59 | def connect(self, graph): |
| 60 | """Add nodes from another graph.""" |
no outgoing calls
no test coverage detected