summaryrefslogtreecommitdiff
path: root/networkx/classes/multigraph.py
Commit message (Expand)AuthorAgeFilesLines
* Update classes docMridul Seth2015-07-291-3/+7
* Merge pull request #1638 from MridulS/adjiterDan Schult2015-07-031-3/+3
|\
| * Update adjacency_iter() method to adjacency() and remove adjacency_list()Mridul Seth2015-07-031-3/+3
* | Merge pull request #1634 from MridulS/selfloopsDan Schult2015-07-031-16/+16
|\ \
| * | Make selfloop methods return iterator instead of list in MultiGraph classMridul Seth2015-07-021-16/+16
| |/
* | Add comment about single node test in degree methodMridul Seth2015-07-031-0/+3
|/
* Remove degree_iter(),now degree() returns an integer for single node and iter...Mridul Seth2015-06-271-20/+31
* Remove edges_iter, G.edges() now returns an iterator instead of listMridul Seth2015-06-171-73/+15
* Merge remote-tracking branch 'upstream/iter_refactor' into iter_refactorMridul Seth2015-06-171-5/+5
|\
| * Makes Graph.nodes() return iterator instead of listJeffrey Finkelstein2015-06-111-5/+5
* | Minor docstring fixes.chebee7i2015-06-151-2/+2
* | "Warning" is not a numpydoc sectionAric Hagberg2015-06-131-4/+2
|/
* pep8 for multigraphGoran Cetusic2015-03-261-112/+106
* Expand data keyword in G.edges and add default dataDan Schult2015-01-171-40/+68
* Meld special classes with base classes.Dan Schult2015-01-021-22/+96
* clarified edge attribute update precedence in add_edges_from()Arne Neumann2014-04-121-0/+3
* Adjust graph/digraph/multigraph/multidgraph node attribute example so it does...Aric Hagberg2012-06-231-1/+2
* Allow .remove_edges_from() to work with 4-tuples (u,v,k,d) for multi(di)graph.Dan Schult2012-06-201-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-4/+4
* Correct name for "see also" docstrings with method nodes_with_selfloops()Dan Schult2011-11-211-1/+1
* Remove spurious iter() and iter(dict.keys()) calls due to 2to3.Dan Schult2011-06-181-2/+2
* Remove weight is False or True backward compatibility in degree methods.Dan Schult2011-06-181-1/+1
* Change degree() and friends to accept weight= keyword instead of weighted=Dan Schult2011-06-181-10/+13
* Remove deprecated "from_whatever()" in favor of to_networkx_graph().Aric Hagberg2011-06-041-11/+6
* 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-2/+2
* Merging py3k-1.2 branch into trunk. Addresses #348loicseguin2010-08-021-34/+37
* Move from list comprehensions to generator expressions where appropriate.dschult2010-05-051-5/+4
* Remove annoying white space at end of line...dschult2010-05-041-90/+90
* 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-3/+10
* Fix subgraph copy of node attributes indschult2010-03-111-1/+2
* Change subgraph to create a copy of the connectivitydschult2010-03-051-62/+37
* Update benchmark.py to NX1.0 and include speed tests of subgraph with edge data.dschult2010-03-021-20/+86
* Silly changes to remove_edge that might speed it up and hopefullydschult2009-10-161-12/+10
* 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-8/+32
* Change remove_edge() behavior for MultiGraph and MultiDiGrapharic2009-10-161-15/+18
* Add more documentation to MultiGraph and MultiDiGraph. Allow optional keys=aric2009-09-091-25/+63
* License change to BSD.aric2009-08-261-2/+2
* Fix minor docstring and rst warnings.aric2009-08-141-1/+4
* Fix spelling erroraric2009-08-131-1/+1
* Update docstrings... add default values for optional argumentsdschult2009-08-131-39/+56
* Remove deprecated methods has_neighbor and delete_*aric2009-08-121-8/+0