<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/classes/multidigraph.py, branch docdraft</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title>"Warning" is not a numpydoc section</title>
<updated>2015-06-13T20:22:22+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2015-06-13T20:22:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=8cb2a233172739e0d263b0e2ed6a37a15f4dae8d'/>
<id>8cb2a233172739e0d263b0e2ed6a37a15f4dae8d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>pep8 for multidigraph</title>
<updated>2015-03-26T19:02:15+00:00</updated>
<author>
<name>Goran Cetusic</name>
<email>goran.cetusic@gmail.com</email>
</author>
<published>2015-03-26T19:02:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=748fe0527721fb42f4c3da89c0323229c40e0a94'/>
<id>748fe0527721fb42f4c3da89c0323229c40e0a94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Expand data keyword in G.edges and add default data</title>
<updated>2015-01-18T02:42:00+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2015-01-18T02:42:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=bbd42197b0c9342cc46658035e8055a08766f34c'/>
<id>bbd42197b0c9342cc46658035e8055a08766f34c</id>
<content type='text'>
When data=True, the whole data dictionary is returned for each edge.
When data=False, no data is returned.
Otherwise data is used as the attribute name of the edge data to return.
&gt;&gt;&gt; [ (u,v,edata['weight']) for u,v,edata in G.edges(data=True) ]
becomes
&gt;&gt;&gt; G.edges(data='weight')

&gt;&gt;&gt; for n,nbrs in G.adjacency_iter():
...     for nbr,ddict in nbrs.items():
...         print (n,nbr,ddict.get('weight',1))
becomes
&gt;&gt;&gt; G.edges(data='weight', default=1)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When data=True, the whole data dictionary is returned for each edge.
When data=False, no data is returned.
Otherwise data is used as the attribute name of the edge data to return.
&gt;&gt;&gt; [ (u,v,edata['weight']) for u,v,edata in G.edges(data=True) ]
becomes
&gt;&gt;&gt; G.edges(data='weight')

&gt;&gt;&gt; for n,nbrs in G.adjacency_iter():
...     for nbr,ddict in nbrs.items():
...         print (n,nbr,ddict.get('weight',1))
becomes
&gt;&gt;&gt; G.edges(data='weight', default=1)
</pre>
</div>
</content>
</entry>
<entry>
<title>Meld special classes with base classes.</title>
<updated>2015-01-02T05:18:11+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2015-01-02T05:18:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=3b7c58a84409d780e22d7972406270fbe9c926c5'/>
<id>3b7c58a84409d780e22d7972406270fbe9c926c5</id>
<content type='text'>
This provides the ability to use OrderedGraph or ThinGraph by
simple subclassing of Graph.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This provides the ability to use OrderedGraph or ThinGraph by
simple subclassing of Graph.
</pre>
</div>
</content>
</entry>
<entry>
<title>Adjust graph/digraph/multigraph/multidgraph node attribute example so it doesn't depend on data ordering.</title>
<updated>2012-06-23T17:52:02+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2012-06-23T17:52:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=586876481af4cdef3339f6aed08fc6786e77ca66'/>
<id>586876481af4cdef3339f6aed08fc6786e77ca66</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add comment about edges() v out_edges().</title>
<updated>2012-04-08T19:34:41+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2012-04-08T19:34:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=a2bf462547c9eddafa2451112b92ae570f188573'/>
<id>a2bf462547c9eddafa2451112b92ae570f188573</id>
<content type='text'>
Fixes #686
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #686
</pre>
</div>
</content>
</entry>
<entry>
<title>Change node lookups to G.node instead of G.adj</title>
<updated>2012-02-06T04:32:34+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2012-02-06T04:32:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=84112a6a6cb2544242e3e9e93ea994013ca27dc2'/>
<id>84112a6a6cb2544242e3e9e93ea994013ca27dc2</id>
<content type='text'>
This should help a small amount when playing with alternate
data structures.

Addreses:  #206, #583
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should help a small amount when playing with alternate
data structures.

Addreses:  #206, #583
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove spurious iter() and iter(dict.keys()) calls due to 2to3.</title>
<updated>2011-06-19T02:18:44+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2011-06-19T02:18:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=97f50e3fe58096265d57699e7d8b59bdab958939'/>
<id>97f50e3fe58096265d57699e7d8b59bdab958939</id>
<content type='text'>
In this case all changes were either only used in a for loop,
or iter(dict.keys()).
Addresses #560
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In this case all changes were either only used in a for loop,
or iter(dict.keys()).
Addresses #560
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove weight is False or True backward compatibility in degree methods.</title>
<updated>2011-06-19T00:43:05+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2011-06-19T00:43:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=1f1c07c1236254ee73426c9be7ce0a7b8b6e88ed'/>
<id>1f1c07c1236254ee73426c9be7ce0a7b8b6e88ed</id>
<content type='text'>
Addresses #573
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Addresses #573
</pre>
</div>
</content>
</entry>
<entry>
<title>Change degree() and friends to accept weight= keyword instead of weighted=</title>
<updated>2011-06-18T05:27:18+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2011-06-18T05:27:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=570509b772159dab14c582f39eb578c3802888b1'/>
<id>570509b772159dab14c582f39eb578c3802888b1</id>
<content type='text'>
weight gives the edge attribute.  weighted was simply boolean.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
weight gives the edge attribute.  weighted was simply boolean.
</pre>
</div>
</content>
</entry>
</feed>
