<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/networkx.git/networkx/generators/geometric.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>Use raw strings so \alpha, \theta, etc. raw backslahes work with sphinx</title>
<updated>2015-06-13T19:18:43+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2015-06-13T19:18:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=029215d417ab785c2097984dc9c03109a51f3816'/>
<id>029215d417ab785c2097984dc9c03109a51f3816</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleans documentation for generators.geometric.</title>
<updated>2015-05-02T21:20:47+00:00</updated>
<author>
<name>Jeffrey Finkelstein</name>
<email>jeffrey.finkelstein@gmail.com</email>
</author>
<published>2015-05-02T21:20:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=71d8076d6fa44f07151f4fb93b39d0784b16562b'/>
<id>71d8076d6fa44f07151f4fb93b39d0784b16562b</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://git.baserock.org/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://git.baserock.org/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>fix waxman_graph domain</title>
<updated>2014-12-16T23:24:41+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2014-12-16T23:24:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=f71c4df637edefaa01d8ca8034fa0e9fa70650ba'/>
<id>f71c4df637edefaa01d8ca8034fa0e9fa70650ba</id>
<content type='text'>
fixes #1302
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fixes #1302
</pre>
</div>
</content>
</entry>
<entry>
<title>Work around IronPython issue with compile()</title>
<updated>2014-07-06T17:21:55+00:00</updated>
<author>
<name>ysitu</name>
<email>ysitu@users.noreply.github.com</email>
</author>
<published>2014-07-06T17:21:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=e1e4fa7a33da4a746ca18ea3da2f683a62dbd938'/>
<id>e1e4fa7a33da4a746ca18ea3da2f683a62dbd938</id>
<content type='text'>
IronPython does not recognize __future__.CO_FUTURE_PRINT_FUNCTION passed
as flags to compile(). Doctests automatically pass this flag when
print_function is imported from __future__.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
IronPython does not recognize __future__.CO_FUTURE_PRINT_FUNCTION passed
as flags to compile(). Doctests automatically pass this flag when
print_function is imported from __future__.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update documentation in waxman_graph.</title>
<updated>2012-12-14T16:31:37+00:00</updated>
<author>
<name>Ben Edwards</name>
<email>bedwards@cs.unm.edu</email>
</author>
<published>2012-12-14T16:31:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=dcdddae2d4da0fd88b9ee6da0bf01201e18073dd'/>
<id>dcdddae2d4da0fd88b9ee6da0bf01201e18073dd</id>
<content type='text'>
The waxman graph documentation was incorrectly documented.
Changed the positive exponential to a negative exponential</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The waxman graph documentation was incorrectly documented.
Changed the positive exponential to a negative exponential</pre>
</div>
</content>
</entry>
<entry>
<title>Small documentation fixes.  Remove :math: role tag.</title>
<updated>2011-05-21T14:24:22+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2011-05-21T14:24:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=e2f6d6cba6468bbf62ec8c9bca57ed6c6237af0b'/>
<id>e2f6d6cba6468bbf62ec8c9bca57ed6c6237af0b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't connect to yourself in nsm graph.</title>
<updated>2011-05-21T01:26:23+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2011-05-21T01:26:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=ba5dc03002810e329a55a581b10555dbc262e7d5'/>
<id>ba5dc03002810e329a55a581b10555dbc262e7d5</id>
<content type='text'>
Fixes #492
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #492
</pre>
</div>
</content>
</entry>
<entry>
<title>Python 3ism xrange-&gt;range.</title>
<updated>2011-05-20T23:39:40+00:00</updated>
<author>
<name>Aric Hagberg</name>
<email>aric.hagberg@gmail.com</email>
</author>
<published>2011-05-20T23:39:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/networkx.git/commit/?id=ad2f63669d08ed87ff6d8e2cd09519d8b15b1cf2'/>
<id>ad2f63669d08ed87ff6d8e2cd09519d8b15b1cf2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
