<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/utils, branch docdraft</title>
<subtitle>github.com: networkx/networkx.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/'/>
<entry>
<title>Simplifies example function in documentation.</title>
<updated>2015-05-19T21:44:52+00:00</updated>
<author>
<name>Jeffrey Finkelstein</name>
<email>jeffrey.finkelstein@gmail.com</email>
</author>
<published>2015-05-19T21:44:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=6182e6bcd7e4c226b8217fed7d2a9095fd76c278'/>
<id>6182e6bcd7e4c226b8217fed7d2a9095fd76c278</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplifies utils.union_find code; PEP8 fixes</title>
<updated>2015-05-08T05:53:52+00:00</updated>
<author>
<name>Jeffrey Finkelstein</name>
<email>jeffrey.finkelstein@gmail.com</email>
</author>
<published>2015-05-05T04:51:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=25348e2522f307e26d45e43850c1df2a3a02a296'/>
<id>25348e2522f307e26d45e43850c1df2a3a02a296</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix copyrights</title>
<updated>2015-04-21T16:51:07+00:00</updated>
<author>
<name>JGab</name>
<email>jean.gabriel.young@gmail.com</email>
</author>
<published>2015-04-21T16:51:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=bc987a9a5e3de487b231bfb27e4d0ee929d924c6'/>
<id>bc987a9a5e3de487b231bfb27e4d0ee929d924c6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Replaces cumulative_sum with accumulate.</title>
<updated>2015-04-18T16:12:34+00:00</updated>
<author>
<name>Jeffrey Finkelstein</name>
<email>jeffrey.finkelstein@gmail.com</email>
</author>
<published>2015-04-18T16:12:34+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=8a35d56c530da52939f9aa34d604f9cd05afecb0'/>
<id>8a35d56c530da52939f9aa34d604f9cd05afecb0</id>
<content type='text'>
Python 3.2 introduces the `itertools.accumulate()`. Before, we were
using less flexible custom code for performing the same task, in
`networkx.utils.misc.cumulative_sum`. This commit replaces calls to
`cumulative_sum` with calls to `itertools.accumulate()`.

Since we currently still support Python 2.7, this commit adds a fallback
equivalent definition of accumulate that matches the Python 3.2
implementation. Once support for Python 2.7 is dropped, all of this code
can be removed, and calls to `networkx.utils.accumulate()` can be
replaced by calls to `itertools.accumulate()`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.2 introduces the `itertools.accumulate()`. Before, we were
using less flexible custom code for performing the same task, in
`networkx.utils.misc.cumulative_sum`. This commit replaces calls to
`cumulative_sum` with calls to `itertools.accumulate()`.

Since we currently still support Python 2.7, this commit adds a fallback
equivalent definition of accumulate that matches the Python 3.2
implementation. Once support for Python 2.7 is dropped, all of this code
can be removed, and calls to `networkx.utils.accumulate()` can be
replaced by calls to `itertools.accumulate()`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a test for UnionFind fix.</title>
<updated>2015-01-19T06:48:26+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2015-01-19T06:48:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=16e52502bf55075c58022fa35e1673a8a0d5f4bc'/>
<id>16e52502bf55075c58022fa35e1673a8a0d5f4bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Make UnionFind handle mixed types better.</title>
<updated>2015-01-19T06:48:13+00:00</updated>
<author>
<name>chebee7i</name>
<email>chebee7i@gmail.com</email>
</author>
<published>2015-01-19T06:44:05+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=d92ca8805f5402ea0e90453775054ae01926cda5'/>
<id>d92ca8805f5402ea0e90453775054ae01926cda5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Handle nondeterministic output in Cuthill-McKee ordering tests</title>
<updated>2014-08-04T19:38:43+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-08-04T19:38:43+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=029beb497662317d72bf4aeda603aa21005ac5af'/>
<id>029beb497662317d72bf4aeda603aa21005ac5af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix PEP8 issues in Cuthill-McKee ordering tests</title>
<updated>2014-08-04T18:00:08+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-08-04T18:00:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=c0387f94e28bbe0934a835b6608ee6da35859523'/>
<id>c0387f94e28bbe0934a835b6608ee6da35859523</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid quadratic behavior in connected_cuthill_mckee_ordering</title>
<updated>2014-08-04T17:57:59+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-08-04T17:57:37+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=f4bddd223c50b3d1f2d53ef4d680cc424a8d146b'/>
<id>f4bddd223c50b3d1f2d53ef4d680cc424a8d146b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix Cuthill-McKee ordering examples</title>
<updated>2014-08-04T17:42:49+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-08-04T17:42:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/networkx.git/commit/?id=f87705397684e554bef82b1ad04fd58d041fe034'/>
<id>f87705397684e554bef82b1ad04fd58d041fe034</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
