diff options
| author | Aric Hagberg <aric.hagberg@gmail.com> | 2012-04-08 13:34:41 -0600 |
|---|---|---|
| committer | Aric Hagberg <aric.hagberg@gmail.com> | 2012-04-08 13:34:41 -0600 |
| commit | a2bf462547c9eddafa2451112b92ae570f188573 (patch) | |
| tree | 41d73e6750670009d13c321c1da6da29d607d41b /networkx/classes/multigraph.py | |
| parent | e85da68ba6f8760d6a235f7801b2c20748b786cd (diff) | |
| download | networkx-a2bf462547c9eddafa2451112b92ae570f188573.tar.gz | |
Add comment about edges() v out_edges().
Fixes #686
Diffstat (limited to 'networkx/classes/multigraph.py')
| -rw-r--r-- | networkx/classes/multigraph.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/networkx/classes/multigraph.py b/networkx/classes/multigraph.py index 82a5a3fd..8569e1e7 100644 --- a/networkx/classes/multigraph.py +++ b/networkx/classes/multigraph.py @@ -537,6 +537,7 @@ class MultiGraph(Graph): Notes ----- Nodes in nbunch that are not in the graph will be (quietly) ignored. + For directed graphs this returns the out-edges. Examples -------- @@ -586,6 +587,7 @@ class MultiGraph(Graph): Notes ----- Nodes in nbunch that are not in the graph will be (quietly) ignored. + For directed graphs this returns the out-edges. Examples -------- |
