<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/ma/tests/test_subclassing.py, branch meson</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>TST,MAINT: Replace most `setup` with `setup_method` (also teardown)</title>
<updated>2022-10-27T12:57:14+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2022-10-27T12:57:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=67841947b458f6bdc6c40d014512da9bc4717a3e'/>
<id>67841947b458f6bdc6c40d014512da9bc4717a3e</id>
<content type='text'>
In some cases, the replacement is clearly not what is intended,
in those (where setup was called explicitly), I mostly renamed
`setup` to `_setup`.
The `test_ccompile_opt` is a bit confusing, so left it right now
(this will probably fail)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In some cases, the replacement is clearly not what is intended,
in those (where setup was called explicitly), I mostly renamed
`setup` to `_setup`.
The `test_ccompile_opt` is a bit confusing, so left it right now
(this will probably fail)
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Adding a test that MaskedArrays respect ufunc deferral heirarchy</title>
<updated>2022-07-13T17:39:03+00:00</updated>
<author>
<name>Greg Lucas</name>
<email>greg.lucas@lasp.colorado.edu</email>
</author>
<published>2020-07-09T14:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a8b0893fc6762bef65e07a699060e015d5e98a98'/>
<id>a8b0893fc6762bef65e07a699060e015d5e98a98</id>
<content type='text'>
This test makes sure that a MaskedArray defers properly to another
class if it doesn't know how to handle it. See #15200.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test makes sure that a MaskedArray defers properly to another
class if it doesn't know how to handle it. See #15200.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "ENH: Adding __array_ufunc__ capability to MaskedArrays"</title>
<updated>2022-07-09T18:22:16+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2022-07-09T18:22:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=072ae770150a70e1821f71302b43cee4bba7055c'/>
<id>072ae770150a70e1821f71302b43cee4bba7055c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Adding a test that MaskedArrays respect ufunc deferral heirarchy</title>
<updated>2022-06-30T01:20:20+00:00</updated>
<author>
<name>Greg Lucas</name>
<email>greg.lucas@lasp.colorado.edu</email>
</author>
<published>2020-07-09T14:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1557c878d0c69ce2369924f723a459c46edc3d2d'/>
<id>1557c878d0c69ce2369924f723a459c46edc3d2d</id>
<content type='text'>
This test makes sure that a MaskedArray defers properly to another
class if it doesn't know how to handle it. See #15200.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This test makes sure that a MaskedArray defers properly to another
class if it doesn't know how to handle it. See #15200.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Let ndarray.__array_finalize__ be callable.</title>
<updated>2022-01-08T22:44:29+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2022-01-07T15:24:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b375f4eace5636d87fb6e09de23e8b2cb5259a1e'/>
<id>b375f4eace5636d87fb6e09de23e8b2cb5259a1e</id>
<content type='text'>
This helps subclasses, who can now do super() in their own
implementation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This helps subclasses, who can now do super() in their own
implementation.
</pre>
</div>
</content>
</entry>
<entry>
<title>REV: Add MaskedArray creation from non nd-array back in (#20386)</title>
<updated>2021-11-16T19:37:19+00:00</updated>
<author>
<name>Greg Lucas</name>
<email>greg.m.lucas@gmail.com</email>
</author>
<published>2021-11-16T19:37:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b31a3a3fb05910abc2ee55d63255efdb2a2c383e'/>
<id>b31a3a3fb05910abc2ee55d63255efdb2a2c383e</id>
<content type='text'>
* REV: Add MaskedArray creation from non nd-array back in

This code path was removed in beacb39. This adds back in the
MaskedArray portion of that commit. A test with a Quantity-like
(non inherited, but still acts like a MaskedArray) class for
this case.

* Update numpy/ma/core.py

Co-authored-by: Sebastian Berg &lt;sebastian@sipsolutions.net&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* REV: Add MaskedArray creation from non nd-array back in

This code path was removed in beacb39. This adds back in the
MaskedArray portion of that commit. A test with a Quantity-like
(non inherited, but still acts like a MaskedArray) class for
this case.

* Update numpy/ma/core.py

Co-authored-by: Sebastian Berg &lt;sebastian@sipsolutions.net&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: use super() as described by PEP 3135</title>
<updated>2021-03-19T09:14:30+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2021-03-19T09:03:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c1aa1af62f6e9fcdda92d6d0991b15051a565814'/>
<id>c1aa1af62f6e9fcdda92d6d0991b15051a565814</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Conversion of some strings to fstrings, part III (#17623)</title>
<updated>2020-10-25T18:47:15+00:00</updated>
<author>
<name>jakobjakobson13</name>
<email>43045863+jakobjakobson13@users.noreply.github.com</email>
</author>
<published>2020-10-25T18:47:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ca39060bd4f98657139f782ff9c02a1f095ed3dc'/>
<id>ca39060bd4f98657139f782ff9c02a1f095ed3dc</id>
<content type='text'>
* Conversion of some strings to fstrings

* Remove spaces

* Update numpy/ma/mrecords.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

* Update numpy/ma/tests/test_old_ma.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

* Update numpy/ma/timer_comparison.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

Co-authored-by: Jakob &lt;jakobjakobson13@posteo.de&gt;
Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Conversion of some strings to fstrings

* Remove spaces

* Update numpy/ma/mrecords.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

* Update numpy/ma/tests/test_old_ma.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

* Update numpy/ma/timer_comparison.py

Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;

Co-authored-by: Jakob &lt;jakobjakobson13@posteo.de&gt;
Co-authored-by: Bas van Beek &lt;43369155+BvB93@users.noreply.github.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Clean-up 'next = __next__' used for Python 2 compatibility</title>
<updated>2020-03-31T22:14:07+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2020-03-31T22:14:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=30f83916c90317b43eb36280bb70a928a15b75e6'/>
<id>30f83916c90317b43eb36280bb70a928a15b75e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove implicit inheritance from object class (#15236)</title>
<updated>2020-01-05T05:53:30+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2020-01-05T05:53:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c31cc36a8a814ed4844a2a553454185601914a5a'/>
<id>c31cc36a8a814ed4844a2a553454185601914a5a</id>
<content type='text'>
Inheriting from object was necessary for Python 2 compatibility to use
new-style classes. In Python 3, this is unnecessary as there are no
old-style classes.

Dropping the object is more idiomatic Python.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Inheriting from object was necessary for Python 2 compatibility to use
new-style classes. In Python 3, this is unnecessary as there are no
old-style classes.

Dropping the object is more idiomatic Python.</pre>
</div>
</content>
</entry>
</feed>
