<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/tests, branch maintenance/1.16.x</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,TST: Remove the misguided `run_command` that wraps subprocess</title>
<updated>2019-01-17T03:54:55+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-12-19T06:28:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=af273187981e6a9a46bbc496de7c9c63480e744f'/>
<id>af273187981e6a9a46bbc496de7c9c63480e744f</id>
<content type='text'>
Also switches to using a parametrized test, for better error messages
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also switches to using a parametrized test, for better error messages
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add np.ctypeslib.as_ctypes_type(dtype), improve `np.ctypeslib.as_ctypes`</title>
<updated>2019-01-16T23:36:32+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-11-22T02:57:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=47403aba1977882b5145bdaa6b85fbf418dc2fd3'/>
<id>47403aba1977882b5145bdaa6b85fbf418dc2fd3</id>
<content type='text'>
This also improves `np.ctypeslib.as_ctypes` to support more types of array:
* non-native endianness
* structured arrays with non-overlapping fields
* booleans
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also improves `np.ctypeslib.as_ctypes` to support more types of array:
* non-native endianness
* structured arrays with non-overlapping fields
* booleans
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix segfault in ctypeslib with obj being collected</title>
<updated>2018-12-17T20:28:51+00:00</updated>
<author>
<name>Anthony Sottile</name>
<email>asottile@umich.edu</email>
</author>
<published>2018-12-16T18:50:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=36043bf3cc20b12b1f33f0f41e5459c906f6f905'/>
<id>36043bf3cc20b12b1f33f0f41e5459c906f6f905</id>
<content type='text'>
- https://bugs.python.org/issue35507
- https://stackoverflow.com/q/53757856/812183
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- https://bugs.python.org/issue35507
- https://stackoverflow.com/q/53757856/812183
</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: test, fix NPY_VISIBILITY_HIDDEN on gcc, which becomes NPY_NO_EXPORT</title>
<updated>2018-11-22T21:03:17+00:00</updated>
<author>
<name>mattip</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2018-11-22T17:36:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=51e9a0283e3a0919ffb3e0243c605d0d4a6d3c47'/>
<id>51e9a0283e3a0919ffb3e0243c605d0d4a6d3c47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG/ENH: Fix use of ndpointer in return values</title>
<updated>2018-11-21T22:34:25+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-11-21T02:36:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=73322a0ba923ff6e6429463ba1e31acc69ce1ea7'/>
<id>73322a0ba923ff6e6429463ba1e31acc69ce1ea7</id>
<content type='text'>
This:
* fixes a regression in 1.15, where it became impossible to set the return value of a cdll function to an ndpointer.
* removes ndpointer.__array_interface__, which was being ignored anyway in favor of the PEP3118 buffer protocol
* adds `ndpointer.contents` to recover the lost functionality, while staying in line with the ctypes behavior
* removes another instance of `descr`, which enables overlapping fields to be returned from C functions (such as unions).
* Fixes a long-term bug where using ndpointer as a return type without specifying both type and dtype would produce an object array containing a single `ndpointer`. Now the ndpointer is returned directly.

This relates to gh-12421, and likely fixes toinsson/pyrealsense#82
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This:
* fixes a regression in 1.15, where it became impossible to set the return value of a cdll function to an ndpointer.
* removes ndpointer.__array_interface__, which was being ignored anyway in favor of the PEP3118 buffer protocol
* adds `ndpointer.contents` to recover the lost functionality, while staying in line with the ctypes behavior
* removes another instance of `descr`, which enables overlapping fields to be returned from C functions (such as unions).
* Fixes a long-term bug where using ndpointer as a return type without specifying both type and dtype would produce an object array containing a single `ndpointer`. Now the ndpointer is returned directly.

This relates to gh-12421, and likely fixes toinsson/pyrealsense#82
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix inconsistent cache keying in ndpointer</title>
<updated>2018-11-20T07:30:31+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-11-20T07:30:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8b366e0b0fff8bd46397d4d013832efce6e338b1'/>
<id>8b366e0b0fff8bd46397d4d013832efce6e338b1</id>
<content type='text'>
Fixes an alarming bug introduced in gh-7311 (1.12) where the following is true

    np.ctypeslib.ndpointer(ndim=2) is np.ctypeslib.ndpointer(shape=2)

Rework of gh-11536
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes an alarming bug introduced in gh-7311 (1.12) where the following is true

    np.ctypeslib.ndpointer(ndim=2) is np.ctypeslib.ndpointer(shape=2)

Rework of gh-11536
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: fix tests on Python 2</title>
<updated>2018-11-14T17:02:50+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-11-14T17:02:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a0833836e07aeabde98eb3cfa1a583b3dd4a9439'/>
<id>a0833836e07aeabde98eb3cfa1a583b3dd4a9439</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: separate builtins and undocumented functions</title>
<updated>2018-11-14T06:04:40+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-11-14T06:04:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4b505c5709ca0974b20176d3ef133e7ed2a7d3fa'/>
<id>4b505c5709ca0974b20176d3ef133e7ed2a7d3fa</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: add a comment explaining why we use normal assert</title>
<updated>2018-11-14T04:28:51+00:00</updated>
<author>
<name>Stephan Hoyer</name>
<email>shoyer@google.com</email>
</author>
<published>2018-11-14T04:28:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4dbd084fd7f6448da24feb99a01b4d7bc275b3ff'/>
<id>4dbd084fd7f6448da24feb99a01b4d7bc275b3ff</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
