summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfinkels <jfinkels@users.noreply.github.com>2016-07-05 09:16:12 -0400
committerGitHub <noreply@github.com>2016-07-05 09:16:12 -0400
commitff58a20dbfa7f2b599b4b1678553c1b1764f1397 (patch)
tree4d8a2bb15b9352b0fd72abe6795ed6f5c6b714ab
parent023da239fb5f76eca2107db312db39fa4f4c206b (diff)
downloadnetworkx-remove-beam-notes.tar.gz
Removes irrelevant Notes section from docstringremove-beam-notes
-rw-r--r--networkx/algorithms/traversal/beamsearch.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/networkx/algorithms/traversal/beamsearch.py b/networkx/algorithms/traversal/beamsearch.py
index 3ddb299b..a6cf8b38 100644
--- a/networkx/algorithms/traversal/beamsearch.py
+++ b/networkx/algorithms/traversal/beamsearch.py
@@ -62,13 +62,6 @@ def bfs_beam_edges(G, source, value, width=None):
>>> for u, v in nx.bfs_beam_edges(G, source, centrality.get, width):
... print((u, v)) # doctest: +SKIP
- Notes
- -----
- This implementation is from `PADS`_, which was in the public domain
- when it was accessed in July, 2004.
-
- .. _PADS: http://www.ics.uci.edu/~eppstein/PADS/BFS.py
-
"""
if width is None: