<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/classes/digraph.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>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>Address ironpython issues from #1327</title>
<updated>2015-01-10T02:36:54+00:00</updated>
<author>
<name>Dan Schult</name>
<email>dschult@colgate.edu</email>
</author>
<published>2015-01-10T02:36:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=65973f3b4ad0a292af36fbfe0502883bb94c30d9'/>
<id>65973f3b4ad0a292af36fbfe0502883bb94c30d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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>Make add_nodes_from compatible with IronPython</title>
<updated>2014-07-04T00:46:12+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-07-04T00:46:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=d31bdbe8dbc28e1ba8c740a4ac6547ddc290d3c7'/>
<id>d31bdbe8dbc28e1ba8c740a4ac6547ddc290d3c7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>clarified edge attribute update precedence in add_edges_from()</title>
<updated>2014-04-12T16:07:10+00:00</updated>
<author>
<name>Arne Neumann</name>
<email>arne-neumann@web.de</email>
</author>
<published>2014-04-12T16:07:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=a4d729d8532b8dd00bd03e6954051bce6e1cd018'/>
<id>a4d729d8532b8dd00bd03e6954051bce6e1cd018</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix/adjust/remove/modify tests that depend on dictionary ordering.</title>
<updated>2012-07-08T16:09:17+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2012-07-08T16:09:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=b094906673e9fa5c941aaea5f4e8e005253c9d8b'/>
<id>b094906673e9fa5c941aaea5f4e8e005253c9d8b</id>
<content type='text'>
Addresses #741

There may still be more that need fixing since

1) NumPy and some other optional packages do not yet work with Python3.3 so those tests weren't checked

2) Finding these errors by running the tests is nondeterministic itself (e.g. passes 4 times and fails on the 5th).  And inspecting all of the tests by hand is error-prone too.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Addresses #741

There may still be more that need fixing since

1) NumPy and some other optional packages do not yet work with Python3.3 so those tests weren't checked

2) Finding these errors by running the tests is nondeterministic itself (e.g. passes 4 times and fails on the 5th).  And inspecting all of the tests by hand is error-prone too.
</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>
</feed>
