<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/ma/tests/test_extras.py, 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>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>MAINT: move remaining MaskedArray matrix tests to matrixlib.</title>
<updated>2018-05-22T20:13:04+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-05-22T20:09:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c17c42924231571b0df833ef3df59194bb3dcb9d'/>
<id>c17c42924231571b0df833ef3df59194bb3dcb9d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: move all masked array matrix tests to matrixlib.</title>
<updated>2018-04-27T16:04:03+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-04-26T21:39:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f18ebf68cfdf7aa816e42b1d358ad416b31a0ec1'/>
<id>f18ebf68cfdf7aa816e42b1d358ad416b31a0ec1</id>
<content type='text'>
Further progress in isolating matrix in preparation of its
deprecation.  There is one place left with an explicit reference
to matrix (in MaskedArray.count), which is to be solved later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Further progress in isolating matrix in preparation of its
deprecation.  There is one place left with an explicit reference
to matrix (in MaskedArray.count), which is to be solved later.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Remove all uses of run_module_suite.</title>
<updated>2018-04-07T00:20:56+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-04-04T16:33:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7bf0564f87511d9e7b6287b3eec0857d0d7742df'/>
<id>7bf0564f87511d9e7b6287b3eec0857d0d7742df</id>
<content type='text'>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
That function is nose specific and has not worked since `__init__` files
were added to the tests directories.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Always return a list from np.ma.flatnotmasked_contiguous</title>
<updated>2018-03-25T19:19:33+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-02-17T06:39:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=093c308fcc4249d8a0f1336827d8eb9ad1e7d274'/>
<id>093c308fcc4249d8a0f1336827d8eb9ad1e7d274</id>
<content type='text'>
Depending on the input, this would return:
* A single slice, if mask=nomask
* A list of slices, if mask is an array
* None, if mask is fully masked

The documented return value is a list, and all downstream callers of this
function end up having to correct for it not being one.

This affects the result of np.ma.notmasked_contiguous, which also did not
document these unusual return values.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Depending on the input, this would return:
* A single slice, if mask=nomask
* A list of slices, if mask is an array
* None, if mask is fully masked

The documented return value is a list, and all downstream callers of this
function end up having to correct for it not being one.

This affects the result of np.ma.notmasked_contiguous, which also did not
document these unusual return values.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: simplify test of notmasked_contiguous</title>
<updated>2018-03-25T19:18:06+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-03-25T19:18:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e2c71688e765a2c0eba4958891b0637754575f18'/>
<id>e2c71688e765a2c0eba4958891b0637754575f18</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Break some long lines.</title>
<updated>2018-01-19T01:08:26+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-01-19T01:08:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=70e34252dc224ace1192cb8534fd55442afe3dfe'/>
<id>70e34252dc224ace1192cb8534fd55442afe3dfe</id>
<content type='text'>
[ci skip]</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
[ci skip]</pre>
</div>
</content>
</entry>
<entry>
<title>ref to issue in numpy.ma</title>
<updated>2018-01-09T19:00:19+00:00</updated>
<author>
<name>Anas Khan</name>
<email>anas.khan96@outlook.com</email>
</author>
<published>2018-01-09T19:00:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a1dfb54a8f02981d07d26037c2c93b1e2590c8a8'/>
<id>a1dfb54a8f02981d07d26037c2c93b1e2590c8a8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>adding new tests for union1d</title>
<updated>2018-01-09T18:25:32+00:00</updated>
<author>
<name>Anas Khan</name>
<email>anas.khan96@outlook.com</email>
</author>
<published>2018-01-09T18:25:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=19ac9ee366a911d7765ab9a2831d4bf8076a9e31'/>
<id>19ac9ee366a911d7765ab9a2831d4bf8076a9e31</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: added masked version of 'numpy.stack' with tests.</title>
<updated>2017-12-17T19:58:43+00:00</updated>
<author>
<name>lzkelley</name>
<email>lkelley@cfa.harvard.edu</email>
</author>
<published>2017-12-15T19:05:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4e112ef679284d931d71cf8f4b20acf0f0254cf0'/>
<id>4e112ef679284d931d71cf8f4b20acf0f0254cf0</id>
<content type='text'>
Uses '_fromnxfunction_seq' just like 'vstack', 'hstack', etc.
Added release note to 1.15.0.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Uses '_fromnxfunction_seq' just like 'vstack', 'hstack', etc.
Added release note to 1.15.0.
</pre>
</div>
</content>
</entry>
</feed>
