<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/ma, branch v1.16.5</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: Make `arr.ctypes.data` hold a reference to the underlying array.</title>
<updated>2018-12-17T22:48:52+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-12-17T22:48:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e8406591df4607db3dea75f03547c77a80ce9b38'/>
<id>e8406591df4607db3dea75f03547c77a80ce9b38</id>
<content type='text'>
Backport of #12572.

We do this by going through ctypes.from_buffer, which keeps the object
the buffer came from alive.

Fixes #9647
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Backport of #12572.

We do this by going through ctypes.from_buffer, which keeps the object
the buffer came from alive.

Fixes #9647
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Review F401,F841,F842 flake8 errors (unused variables and imports) (#12448)</title>
<updated>2018-12-06T19:05:08+00:00</updated>
<author>
<name>Roman Yurchak</name>
<email>rth.yurchak@pm.me</email>
</author>
<published>2018-12-06T19:05:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=45cef38cda80868355a920b5e94211dcf662ea07'/>
<id>45cef38cda80868355a920b5e94211dcf662ea07</id>
<content type='text'>
* Review F401,F841,F842 flake8 errors (unused variables, imports)

* Review comments

* More tests in test_installed_npymath_ini

* Review comments
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Review F401,F841,F842 flake8 errors (unused variables, imports)

* Review comments

* More tests in test_installed_npymath_ini

* Review comments
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: IndexError for empty list on structured MaskedArray.</title>
<updated>2018-11-30T16:33:36+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-11-30T16:33:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1842ea98e764d48e4d82636c995b86d1926fd124'/>
<id>1842ea98e764d48e4d82636c995b86d1926fd124</id>
<content type='text'>
This should give an empty result, not an error.  The problem
was that the empty list was interpreted as a list of strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should give an empty result, not an error.  The problem
was that the empty list was interpreted as a list of strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: multifield-view of MaskedArray gets bad fill_value</title>
<updated>2018-11-19T22:08:55+00:00</updated>
<author>
<name>Allan Haldane</name>
<email>allan.haldane@gmail.com</email>
</author>
<published>2018-11-18T06:37:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6386fdb247a409f757fed3ab7026585fd0d2aa3d'/>
<id>6386fdb247a409f757fed3ab7026585fd0d2aa3d</id>
<content type='text'>
Fixes #10483
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #10483
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add masked array tests for '==' and '!='.</title>
<updated>2018-10-24T17:34:14+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-10-24T00:50:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=173f65c02c8d654fc55f381665ec43c64d43d636'/>
<id>173f65c02c8d654fc55f381665ec43c64d43d636</id>
<content type='text'>
Cover the string and numeric types. Structured types were
already covered.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Cover the string and numeric types. Structured types were
already covered.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix fill value in masked array '==' and '!=' ops.</title>
<updated>2018-10-24T15:38:13+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-10-23T17:18:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c8bc1499b5933d189945c1f8956df183c60c8603'/>
<id>c8bc1499b5933d189945c1f8956df183c60c8603</id>
<content type='text'>
The type of the fill_value needs to be `bool_` in order to match
the result type of `==` and `!=`.

Closes #12248.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The type of the fill_value needs to be `bool_` in order to match
the result type of `==` and `!=`.

Closes #12248.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix MaskedArray fill_value type conversion.</title>
<updated>2018-10-20T20:09:19+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-10-19T18:45:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=046cd82608951f68b09f5c9e749d1193b41f2328'/>
<id>046cd82608951f68b09f5c9e749d1193b41f2328</id>
<content type='text'>
Fixes the regression introduced by #10211 where the masked array fill
value type was not properly converted by astype.

Closes #12070.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes the regression introduced by #10211 where the masked array fill
value type was not properly converted by astype.

Closes #12070.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT, TST import pickle from numpy.core.numeric</title>
<updated>2018-10-10T12:53:45+00:00</updated>
<author>
<name>Pierre Glaser</name>
<email>pierreglaser@msn.com</email>
</author>
<published>2018-09-19T15:07:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7372f8dcc6af4446e502c0daec3199dace27e863'/>
<id>7372f8dcc6af4446e502c0daec3199dace27e863</id>
<content type='text'>
All imports of pickle from numpy modules are now done this way:
&gt;&gt;&gt; from numpy.core.numeric import pickle

Also, some loops on protocol numbers are added over pickle tests that
were not caught from #12090
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All imports of pickle from numpy modules are now done this way:
&gt;&gt;&gt; from numpy.core.numeric import pickle

Also, some loops on protocol numbers are added over pickle tests that
were not caught from #12090
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Eliminate the private `numerictypes._typestr`</title>
<updated>2018-09-21T06:38:04+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-09-21T06:26:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=6bfd1db8228a22c3a3aff11357e8812c3ebaeb6a'/>
<id>6bfd1db8228a22c3a3aff11357e8812c3ebaeb6a</id>
<content type='text'>
This was used internally only by a private function that is also unused.
The loop adding type aliases was shown by #12007 to have no effect.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This was used internally only by a private function that is also unused.
The loop adding type aliases was shown by #12007 to have no effect.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: refactor design of recursive closures (#11910)</title>
<updated>2018-09-17T06:08:42+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2018-09-17T06:08:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=73d7871970a951edd48e5c40bdc7609385ce61e6'/>
<id>73d7871970a951edd48e5c40bdc7609385ce61e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
