summaryrefslogtreecommitdiff
path: root/networkx/classes/multigraph.py
diff options
context:
space:
mode:
authorAric Hagberg <aric.hagberg@gmail.com>2012-04-08 13:34:41 -0600
committerAric Hagberg <aric.hagberg@gmail.com>2012-04-08 13:34:41 -0600
commita2bf462547c9eddafa2451112b92ae570f188573 (patch)
tree41d73e6750670009d13c321c1da6da29d607d41b /networkx/classes/multigraph.py
parente85da68ba6f8760d6a235f7801b2c20748b786cd (diff)
downloadnetworkx-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.py2
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
--------