<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/shape_base.py, branch eric-wieser-patch-1</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>ENH: __array_function__ updates for NumPy 1.17.0</title>
<updated>2019-01-22T22:13:39+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2019-01-22T22:07:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=96d179ce5bd0e3f75508f6afdfb2fb65170cc83c'/>
<id>96d179ce5bd0e3f75508f6afdfb2fb65170cc83c</id>
<content type='text'>
- Always enable __array_function__ overrides.
- Remove special cases for Python 2 compatibility.
- Document these changes in 1.17.0-notes.rst.

It will be good to see ASV numbers to understand the performance implications
of these changes. If need be, we can speed up NumPy functions internally by
using non-dispatched functions (with ``.__wrapped__``).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Always enable __array_function__ overrides.
- Remove special cases for Python 2 compatibility.
- Document these changes in 1.17.0-notes.rst.

It will be good to see ASV numbers to understand the performance implications
of these changes. If need be, we can speed up NumPy functions internally by
using non-dispatched functions (with ``.__wrapped__``).
</pre>
</div>
</content>
</entry>
<entry>
<title>TST, DOC: enable refguide_check</title>
<updated>2018-12-14T18:14:05+00:00</updated>
<author>
<name>Tyler Reddy</name>
<email>tyler.je.reddy@gmail.com</email>
</author>
<published>2018-11-14T19:36:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=250861059b106371cb232456eeccd6d9e97d8f00'/>
<id>250861059b106371cb232456eeccd6d9e97d8f00</id>
<content type='text'>
* ported the refguide_check module from SciPy for usage
in NumPy docstring execution/ verification; added the
refguide_check run to Azure Mac OS CI

* adjusted NumPy docstrings such that refguide_check passes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ported the refguide_check module from SciPy for usage
in NumPy docstring execution/ verification; added the
refguide_check run to Azure Mac OS CI

* adjusted NumPy docstrings such that refguide_check passes
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: more fixes for disabling overrides</title>
<updated>2018-11-11T00:12:18+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-11-11T00:12:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b44284ebc42c496e5c5d906acc33ebbc337fd3b1'/>
<id>b44284ebc42c496e5c5d906acc33ebbc337fd3b1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: deprecate passing a generator to stack functions</title>
<updated>2018-10-27T19:45:25+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-10-27T19:23:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bfe0921f9bdd6b347982a9c998b8b1890040ba5b'/>
<id>bfe0921f9bdd6b347982a9c998b8b1890040ba5b</id>
<content type='text'>
Fixes gh-12263

We can't support generators with dispatch for ``__array_function__``.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes gh-12263

We can't support generators with dispatch for ``__array_function__``.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: set preferred __module__ for numpy functions</title>
<updated>2018-10-23T14:57:40+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-10-23T14:53:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8bab96faf2cb740536712e49e92e133626087018'/>
<id>8bab96faf2cb740536712e49e92e133626087018</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: __array_function__ support for np.lib, part 2/2 (#12119)</title>
<updated>2018-10-23T00:40:08+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@gmail.com</email>
</author>
<published>2018-10-23T00:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=73151451437fa6ce0d8b5f033c1e005885f63cf8'/>
<id>73151451437fa6ce0d8b5f033c1e005885f63cf8</id>
<content type='text'>
* ENH: __array_function__ support for np.lib, part 2

xref GH12028

np.lib.npyio through np.lib.ufunclike

* Fix failures in numpy/core/tests/test_overrides.py

* CLN: handle depreaction in dispatchers for np.lib.ufunclike

* CLN: fewer dispatchers in lib.twodim_base

* CLN: fewer dispatchers in lib.shape_base

* CLN: more dispatcher consolidation

* BUG: fix test failure

* Use all method instead of function in assert_equal

* DOC: indicate n is array_like in scimath.logn

* MAINT: updates per review

* MAINT: more conservative changes in assert_array_equal

* MAINT: add back in comment

* MAINT: casting tweaks in assert_array_equal

* MAINT: fixes and tests for assert_array_equal on subclasses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* ENH: __array_function__ support for np.lib, part 2

xref GH12028

np.lib.npyio through np.lib.ufunclike

* Fix failures in numpy/core/tests/test_overrides.py

* CLN: handle depreaction in dispatchers for np.lib.ufunclike

* CLN: fewer dispatchers in lib.twodim_base

* CLN: fewer dispatchers in lib.shape_base

* CLN: more dispatcher consolidation

* BUG: fix test failure

* Use all method instead of function in assert_equal

* DOC: indicate n is array_like in scimath.logn

* MAINT: updates per review

* MAINT: more conservative changes in assert_array_equal

* MAINT: add back in comment

* MAINT: casting tweaks in assert_array_equal

* MAINT: fixes and tests for assert_array_equal on subclasses
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix array_split incorrect behavior with array size bigger MAX_INT32 (#11813)</title>
<updated>2018-08-26T16:15:27+00:00</updated>
<author>
<name>Nikita Titov</name>
<email>nekit94-08@mail.ru</email>
</author>
<published>2018-08-26T16:15:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=63a57c3f6a58c61763daf89a2d5495f6a855bf9b'/>
<id>63a57c3f6a58c61763daf89a2d5495f6a855bf9b</id>
<content type='text'>
Fixes #11809.

* BUG: fix array_split incorrect behavior with array size bigger MAX_INT32

* TST: added test for array_split with array size greater MAX_INT32

* addressed review comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #11809.

* BUG: fix array_split incorrect behavior with array size bigger MAX_INT32

* TST: added test for array_split with array size greater MAX_INT32

* addressed review comments
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Make expand_dims work on subclasses</title>
<updated>2018-07-30T06:18:31+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-07-30T06:18:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=766d82f85ac04ffd9ba32e0266bc270acfe7ed60'/>
<id>766d82f85ac04ffd9ba32e0266bc270acfe7ed60</id>
<content type='text'>
This allows np.ma.expand_dims to be removed
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This allows np.ma.expand_dims to be removed
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add (put|take)_along_axis as described in #8708</title>
<updated>2018-05-26T05:55:58+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2017-02-28T14:03:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=905e906d55fdcb8cc215de8aa287ea9654d1c95c'/>
<id>905e906d55fdcb8cc215de8aa287ea9654d1c95c</id>
<content type='text'>
This is the reduced version that does not allow any insertion of extra dimensions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the reduced version that does not allow any insertion of extra dimensions
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Add missing np. prefix to expand_dims docs (#10109)</title>
<updated>2017-11-28T08:18:58+00:00</updated>
<author>
<name>Hidehiro NAGAOKA</name>
<email>kuinige@gmail.com</email>
</author>
<published>2017-11-28T08:18:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c08d2647240555e730da7580374a61d8547a932e'/>
<id>c08d2647240555e730da7580374a61d8547a932e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
