Returns True if graph is directed, False otherwise.
(self)
| 1586 | return False |
| 1587 | |
| 1588 | def is_directed(self): |
| 1589 | """Returns True if graph is directed, False otherwise.""" |
| 1590 | return False |
| 1591 | |
| 1592 | def copy(self, as_view=False): |
| 1593 | """Returns a copy of the graph. |
no outgoing calls