<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/core/_methods.py, branch v1.10.0rc2</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>STY: PEP8 fixes for numpy/core/*.py</title>
<updated>2015-07-05T18:18:26+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2015-07-05T17:47:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8b3e9ae5262c1da1118370cd6e83db9b2166952e'/>
<id>8b3e9ae5262c1da1118370cd6e83db9b2166952e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: avoid keyword arguments for some ufunc.reduce wrappers</title>
<updated>2014-05-15T21:52:43+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-01-10T23:41:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f0497eccf273ffa5eae8418d4ca699d85ab7b41e'/>
<id>f0497eccf273ffa5eae8418d4ca699d85ab7b41e</id>
<content type='text'>
PyArg_ParseTupleAndKeywords is pretty slow for keywords as it needs to
create python strings first. Using positional arguments avoids this and
gains 15-20% performance for small reductions.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
PyArg_ParseTupleAndKeywords is pretty slow for keywords as it needs to
create python strings first. Using positional arguments avoids this and
gains 15-20% performance for small reductions.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix mean, var, std methods for object arrays.</title>
<updated>2014-02-10T18:07:17+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-02-09T02:04:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4ebf25e1e3b3b0c8619cce395a96d0dffa9e4e8a'/>
<id>4ebf25e1e3b3b0c8619cce395a96d0dffa9e4e8a</id>
<content type='text'>
This takes care to preserve the object type for scalar returns and
fixes the error that resulted when the scalar did not have a dtype
attribute.

Closes #4063.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This takes care to preserve the object type for scalar returns and
fixes the error that resulted when the scalar did not have a dtype
attribute.

Closes #4063.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: typo</title>
<updated>2013-10-19T16:35:18+00:00</updated>
<author>
<name>Lars Buitinck</name>
<email>larsmans@gmail.com</email>
</author>
<published>2013-10-19T15:51:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=405753a1051d26590b0e8844eb0d42a2e00c4808'/>
<id>405753a1051d26590b0e8844eb0d42a2e00c4808</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Make ndarray.{var, std} work for scalars.</title>
<updated>2013-10-04T22:07:38+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-10-04T18:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=2f77e1e6e6b91a9cd11c422342c69e8fd68ee803'/>
<id>2f77e1e6e6b91a9cd11c422342c69e8fd68ee803</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Giant whitespace cleanup.</title>
<updated>2013-08-18T17:20:45+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-08-18T17:16:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8ddb0ce0acafe75d78df528b4d2540dfbf4b364d'/>
<id>8ddb0ce0acafe75d78df528b4d2540dfbf4b364d</id>
<content type='text'>
Now is as good a time as any with open PR's at a low.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now is as good a time as any with open PR's at a low.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Make var and std methods raise error when ddof too big.</title>
<updated>2013-08-13T04:33:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-07-14T15:57:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=02f5258125debef5a0e5f6072805a8c72e4a1bde'/>
<id>02f5258125debef5a0e5f6072805a8c72e4a1bde</id>
<content type='text'>
Currently the results may be infinite or negative. Instead, raise a
ValueError in this case.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently the results may be infinite or negative. Instead, raise a
ValueError in this case.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Make mean, sum, var, std methods return correct scalar type.</title>
<updated>2013-08-13T04:33:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-07-14T02:54:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f16b12e87667a85ab0dd6e26ddd4083117459fa6'/>
<id>f16b12e87667a85ab0dd6e26ddd4083117459fa6</id>
<content type='text'>
The return type could differ depending on whether or not the value
was a scalar.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The return type could differ depending on whether or not the value
was a scalar.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Clean up core/_methods.py and core/fromnumeric.py</title>
<updated>2013-08-13T04:33:55+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-06-21T16:28:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1b6b8719735ca3e98a0a0c3f492f16ff00ba1aa9'/>
<id>1b6b8719735ca3e98a0a0c3f492f16ff00ba1aa9</id>
<content type='text'>
Use issubclass instead of issubdtype.
Add some blank lines.
Remove trailing whitespace.
Remove uneeded float casts since true_divide is default.
Clean up documentation a bit.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use issubclass instead of issubdtype.
Add some blank lines.
Remove trailing whitespace.
Remove uneeded float casts since true_divide is default.
Clean up documentation a bit.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Separate nan functions into their own module.</title>
<updated>2013-08-13T04:33:55+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2013-06-21T02:44:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=fcb0fef5c673ed0a5442b18bcd8c391907b4f9a7'/>
<id>fcb0fef5c673ed0a5442b18bcd8c391907b4f9a7</id>
<content type='text'>
New files lib/nanfunctions.py and lib/tests/test_nanfunctions.py are
added and both the previous and new nan functions and tests are moved
into them.

The existing nan functions moved from lib/function_base are:

    nansum, nanmin, nanmax, nanargmin, nanargmax

The added nan functions moved from core/numeric are:

    nanmean, nanvar, nanstd
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
New files lib/nanfunctions.py and lib/tests/test_nanfunctions.py are
added and both the previous and new nan functions and tests are moved
into them.

The existing nan functions moved from lib/function_base are:

    nansum, nanmin, nanmax, nanargmin, nanargmax

The added nan functions moved from core/numeric are:

    nanmean, nanvar, nanstd
</pre>
</div>
</content>
</entry>
</feed>
