summaryrefslogtreecommitdiff
path: root/networkx/classes/graph.py
Commit message (Expand)AuthorAgeFilesLines
* Fix, now raise NetworkXError instead of TypeErrorAntoine Mazières2015-10-271-1/+1
* Fix some sphinx formatting errorsDan Schult2015-10-041-6/+6
* minor changes related to _iter removalDan Schult2015-08-071-19/+19
* Merge master into iter_refactorDan Schult2015-08-071-2/+2
* Update classes docMridul Seth2015-07-291-15/+14
* Quick doc fixesMridul Seth2015-07-141-3/+3
* Merge pull request #1638 from MridulS/adjiterDan Schult2015-07-031-34/+5
|\
| * Update adjacency_iter() method to adjacency() and remove adjacency_list()Mridul Seth2015-07-031-34/+5
* | Merge pull request #1634 from MridulS/selfloopsDan Schult2015-07-031-10/+10
|\ \
| * | Update G.number_of_selfloops()Mridul Seth2015-07-031-1/+1
| * | Make selfloop methods return iterator instead of list in graph classMridul Seth2015-07-021-10/+10
| |/
* | Add comment about single node test in degree methodMridul Seth2015-07-031-0/+3
|/
* Remove commented out codeMridul Seth2015-06-271-88/+0
* Remove degree_iter(),now degree() returns an integer for single node and iter...Mridul Seth2015-06-271-1/+34
* Add new degree() implementation to graph.pyMridul Seth2015-06-191-79/+102
* Merge pull request #1588 from MridulS/neigbhorsiterDan Schult2015-06-171-20/+5
|\
| * Remove neighbors_iter, G.neighbors() now returns an iterator instead of listMridul Seth2015-06-121-20/+5
* | Remove edges_iter, G.edges() now returns an iterator instead of listMridul Seth2015-06-171-69/+18
* | Merge remote-tracking branch 'upstream/iter_refactor' into iter_refactorMridul Seth2015-06-171-54/+38
|\ \
| * | Update changes to G.nodes()Mridul Seth2015-06-161-14/+11
| * | Fix TODO in networkx/classes/graph.pyMridul Seth2015-06-131-2/+0
| * | Makes Graph.nodes() return iterator instead of listJeffrey Finkelstein2015-06-111-55/+44
| |/
* | Minor docstring fixes.chebee7i2015-06-151-1/+1
* | Spelling fixesAric Hagberg2015-06-131-3/+1
|/
* Fixing failed merge.chebee7i2015-04-091-6/+0
* Merge remote-tracking branch 'pebenito/master' into pebenito-sysfixchebee7i2015-04-091-0/+4
|\
| * Remove sys.stdout.write() in Graph.nbunch_iter()/bunch_iter()Chris PeBenito2015-03-251-2/+0
* | Merge branch 'master' into pep8Goran Cetusic2015-03-261-2/+2
|\ \ | |/
| * Correct add_nodes_from use of adjlist_dict_factoryDan Schult2015-03-061-2/+2
* | pep8 fix for base graph clases and methodsGoran Cetusic2015-03-261-119/+104
|/
* Expand data keyword in G.edges and add default dataDan Schult2015-01-171-19/+44
* Address ironpython issues from #1327Dan Schult2015-01-091-7/+8
* Meld special classes with base classes.Dan Schult2015-01-021-17/+109
* Make add_nodes_from compatible with IronPythonysitu2014-07-031-18/+16
* clarified edge attribute update precedence in add_edges_from()Arne Neumann2014-04-121-0/+3
* Fixed typoRoy Hyunjin Han2013-11-041-1/+1
* Fix/adjust/remove/modify tests that depend on dictionary ordering.Aric Hagberg2012-07-081-3/+0
* Adjust graph/digraph/multigraph/multidgraph node attribute example so it does...Aric Hagberg2012-06-231-1/+2
* Add comment about edges() v out_edges().Aric Hagberg2012-04-081-0/+2
* Change node lookups to G.node instead of G.adjDan Schult2012-02-051-22/+24
* Correct name for "see also" docstrings with method nodes_with_selfloops()Dan Schult2011-11-211-2/+2
* Allow arbitrary attribute names for the weight in add_weighted_edges_from.Dan Schult2011-09-061-4/+7
* Adjust idiom list( stuff ) where unnecessary--mostly due to 2to3,Dan Schult2011-06-181-3/+3
* Remove spurious iter() and iter(dict.keys()) calls due to 2to3.Dan Schult2011-06-181-5/+5
* Remove weight is False or True backward compatibility in degree methods.Dan Schult2011-06-181-2/+0
* Change degree() and friends to accept weight= keyword instead of weighted=Dan Schult2011-06-181-25/+34
* Remove deprecated "from_whatever()" in favor of to_networkx_graph().Aric Hagberg2011-06-041-11/+6
* Fix a few doctests without proper nx prefix.Aric Hagberg2011-05-211-0/+1
* Make Graph.name a property that sets/gets Graph.graph['name']Aric Hagberg2011-05-161-5/+8
* Add graph attribute 'name'.Aric Hagberg2011-04-161-2/+2