summaryrefslogtreecommitdiff
path: root/networkx/classes/multidigraph.py
Commit message (Expand)AuthorAgeFilesLines
* "Warning" is not a numpydoc sectionAric Hagberg2015-06-131-4/+2
* pep8 for multidigraphGoran Cetusic2015-03-261-116/+113
* Expand data keyword in G.edges and add default dataDan Schult2015-01-171-18/+32
* Meld special classes with base classes.Dan Schult2015-01-021-10/+96
* 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-1/+1
* Change node lookups to G.node instead of G.adjDan Schult2012-02-051-4/+4
* Remove spurious iter() and iter(dict.keys()) calls due to 2to3.Dan Schult2011-06-181-4/+4
* Remove weight is False or True backward compatibility in degree methods.Dan Schult2011-06-181-5/+5
* Change degree() and friends to accept weight= keyword instead of weighted=Dan Schult2011-06-181-27/+37
* DiGraph and MultiDigraph reverse(copy=True) methods don't make a proper copy ...Aric Hagberg2011-06-091-0/+26
* Remove deprecated "from_whatever()" in favor of to_networkx_graph().Aric Hagberg2011-06-041-15/+7
* Use iterators instead of lists when possible. Addresses #560Loïc Séguin-C.2011-05-281-2/+2
* Make Graph.name a property that sets/gets Graph.graph['name']Aric Hagberg2011-05-161-3/+0
* More imports cleanup and exceptions fixed.Loïc Séguin-C.2011-02-101-2/+1
* Start edge key search at len(keydict) instead of 0 to save time with many mul...Dan Schult2010-11-291-1/+1
* Add MultiDiGraph in_edges() and out_edges() methods.Aric Hagberg2010-11-161-0/+58
* Fix bug in degree_iter(weighted=True) for MultiGraphs.Aric Hagberg2010-11-081-1/+1
* Add reciprocal option in to_undirected().Aric Hagberg2010-09-281-5/+18
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-021-46/+49
* Move from list comprehensions to generator expressions where appropriate.dschult2010-05-051-25/+16
* Remove annoying white space at end of line...dschult2010-05-041-74/+74
* Remove the now unused copy=True argument from the subgraph methods.dschult2010-04-181-1/+1
* Use standard "import networkx as nx" in all modulesaric2010-04-171-0/+1
* Improve subgraph documentation about attributes anddschult2010-04-141-3/+3
* Spelling enhancementsaric2010-04-071-2/+2
* Use to_networkx_graph() instead of from_whatever()aric2010-04-071-1/+0
* Add more documentation on shallow and deep copiesaric2010-04-061-6/+18
* Fix subgraph copy of node attributes indschult2010-03-111-1/+2
* Change subgraph to create a copy of the connectivitydschult2010-03-051-68/+42
* Update benchmark.py to NX1.0 and include speed tests of subgraph with edge data.dschult2010-03-021-0/+92
* Silly changes to remove_edge that might speed it up and hopefullydschult2009-10-161-5/+6
* Add to docstring in remove_edge: a second cause of raising NetworkXErrordschult2009-10-161-1/+2
* Add documentation and adjust tests for remove_edge() change.aric2009-10-161-6/+19
* Change remove_edge() behavior for MultiGraph and MultiDiGrapharic2009-10-161-13/+16
* Add more documentation to MultiGraph and MultiDiGraph. Allow optional keys=aric2009-09-091-5/+5
* Document in_degree* and out_degree*aric2009-08-291-0/+62
* License change to BSD.aric2009-08-261-2/+2
* Fix minor docstring and rst warnings.aric2009-08-141-1/+1
* Fix spelling erroraric2009-08-131-1/+1
* Update docstrings... add default values for optional argumentsdschult2009-08-131-28/+57
* Remove deprecated methods has_neighbor and delete_*aric2009-08-121-2/+0
* Remove path_graph and complete_graph from docstrings in base classesdschult2009-08-111-5/+35
* Merge attrgraph branch into trunkaric2009-08-111-539/+363
* Apply patch to add documentation for classes. Addresses #204.aric2009-03-061-66/+440
* Merged multigraph-dict branch 1138:1161 into trunk. Addresses #225aric2009-02-271-84/+101
* Raise exception when trying to remove edges inaric2009-01-191-8/+7
* Fix case in MultiGraph and MultiDiGraph where twoaric2009-01-121-4/+6
* Rename get_edge() to get_edge_data(). Now returns None asaric2008-12-221-23/+0
* Add in_edges_iter() and in_edges() to DiGraph and MultiDiGrapharic2008-12-211-1/+21