<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/stride_tricks.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>BUG: fix _broadcast_shape (and broadcast_array) for len(args) &gt; 32</title>
<updated>2015-05-15T08:14:18+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@climate.com</email>
</author>
<published>2015-05-15T08:14:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=aa50162b58e0226bf4f5c21ee1d74a94e85cd6d7'/>
<id>aa50162b58e0226bf4f5c21ee1d74a94e85cd6d7</id>
<content type='text'>
Fixes gh-5862
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes gh-5862
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: note versionadded for broadcast_to</title>
<updated>2015-05-06T12:52:09+00:00</updated>
<author>
<name>Eric Moore</name>
<email>ewm@redtetrahedron.org</email>
</author>
<published>2015-05-06T12:51:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=682cd97e1f4485aa92e40684f7966d66a4a7371b'/>
<id>682cd97e1f4485aa92e40684f7966d66a4a7371b</id>
<content type='text'>
closes gh-5839
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
closes gh-5839
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #5519 from jaimefrio/array_interface_dtype</title>
<updated>2015-03-12T22:42:59+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2015-03-12T22:42:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e84454aded855a70c3dcfd586a3a0c0e108d0ab7'/>
<id>e84454aded855a70c3dcfd586a3a0c0e108d0ab7</id>
<content type='text'>
ENH: PyArray_FromInterface checks descr if typestr is np.void</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: PyArray_FromInterface checks descr if typestr is np.void</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: PyArray_FromInterface checks descr if typestr is np.void</title>
<updated>2015-03-09T06:12:42+00:00</updated>
<author>
<name>jaimefrio</name>
<email>jaime.frio@gmail.com</email>
</author>
<published>2015-01-29T05:25:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0808ae8fc5e3d539989aeceb74cbac35bb55598e'/>
<id>0808ae8fc5e3d539989aeceb74cbac35bb55598e</id>
<content type='text'>
When the 'typestr' member of the __array_interface__ dictionary defines
a np.void dtype, check the 'descr' member, and if it is a valid dtype
description and it is not the default one, use it to construct the
dtype for the array to return.

This fixes #5081, as as_strided no longer has to worry about changing
the dtype of the return.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When the 'typestr' member of the __array_interface__ dictionary defines
a np.void dtype, check the 'descr' member, and if it is a valid dtype
description and it is not the default one, use it to construct the
dtype for the array to return.

This fixes #5081, as as_strided no longer has to worry about changing
the dtype of the return.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix broadcast_to for reference types</title>
<updated>2015-03-01T22:29:58+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@climate.com</email>
</author>
<published>2015-03-01T22:23:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d5a67b5b421c12cc46d9bcd07ddc4b91c1e5fef3'/>
<id>d5a67b5b421c12cc46d9bcd07ddc4b91c1e5fef3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add broadcast_to function</title>
<updated>2015-02-27T02:15:44+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@climate.com</email>
</author>
<published>2015-01-15T07:41:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=05b5335ecf25e59477956b4f85b9a8edbdf71bcc'/>
<id>05b5335ecf25e59477956b4f85b9a8edbdf71bcc</id>
<content type='text'>
Per the mailing list discussion [1], I have implemented a new function
`broadcast_to` that broadcasts an array to a given shape according to
numpy's broadcasting rules.

[1] http://mail.scipy.org/pipermail/numpy-discussion/2014-December/071796.html
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Per the mailing list discussion [1], I have implemented a new function
`broadcast_to` that broadcasts an array to a given shape according to
numpy's broadcasting rules.

[1] http://mail.scipy.org/pipermail/numpy-discussion/2014-December/071796.html
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert as_strided input to array first</title>
<updated>2014-08-27T21:04:47+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2014-08-27T18:46:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e8590311a7b312711c7a4f40c1a15496e34d0ee6'/>
<id>e8590311a7b312711c7a4f40c1a15496e34d0ee6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: add subok flag to stride_tricks (and thus broadcast_arrays)</title>
<updated>2014-08-25T17:08:19+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2014-04-16T01:32:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=26a02cd702d9ccfc48978dcf81c80225f324bf3b'/>
<id>26a02cd702d9ccfc48978dcf81c80225f324bf3b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Make files in numpy/lib PEP8 compliant.</title>
<updated>2014-07-31T19:21:17+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-07-31T00:06:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=01b0d7e82211b581aaff925e3ccc36cff9ac1895'/>
<id>01b0d7e82211b581aaff925e3ccc36cff9ac1895</id>
<content type='text'>
The rules enforced are the same as those used for scipy.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The rules enforced are the same as those used for scipy.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix stride_stricks.as_strided function for object arrays</title>
<updated>2014-02-27T00:30:44+00:00</updated>
<author>
<name>Jay Bourque</name>
<email>jay.bourque@continuum.io</email>
</author>
<published>2014-02-27T00:30:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a98b6b4ef12d09c51e5c9f015992c5b2ae164607'/>
<id>a98b6b4ef12d09c51e5c9f015992c5b2ae164607</id>
<content type='text'>
Currently, calling as_strided for object array results in 'TypeError: Cannot change data-type for object array.'. Fix so that dtype of new array is only set for void dtype, as originally intended.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, calling as_strided for object array results in 'TypeError: Cannot change data-type for object array.'. Fix so that dtype of new array is only set for void dtype, as originally intended.
</pre>
</div>
</content>
</entry>
</feed>
