<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/testing/tests, branch build_test</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>MAINT: Remove old sys.version_info code</title>
<updated>2020-09-03T10:46:30+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2020-09-02T13:43:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d09e192f05fae7d2e13735c82714b0bc140a0d9f'/>
<id>d09e192f05fae7d2e13735c82714b0bc140a0d9f</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 and improve test_ignore_nan_ulperror.</title>
<updated>2020-06-14T18:45:05+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-06-14T16:45:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=dcf74f6b3b07366d3fa742ed431a3755e1299ccb'/>
<id>dcf74f6b3b07366d3fa742ed431a3755e1299ccb</id>
<content type='text'>
Move test_ignore_nan_ulperror to `numpy/testing/tests/test_utils.py
and extend to all floating types.

Closes 16600.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move test_ignore_nan_ulperror to `numpy/testing/tests/test_utils.py
and extend to all floating types.

Closes 16600.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: cleanup unused imports; avoid redefinition of imports</title>
<updated>2020-02-06T09:16:23+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2020-02-04T19:21:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=07bf33fbf5be8143aab037dc65aba3086f8badf6'/>
<id>07bf33fbf5be8143aab037dc65aba3086f8badf6</id>
<content type='text'>
* Cleanup unused imports (F401) of mostly standard Python modules,
  or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Cleanup unused imports (F401) of mostly standard Python modules,
  or some internal but unlikely referenced modules
* Where internal imports are potentially used, mark with noqa
* Avoid redefinition of imports (F811)
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: use 'yield from &lt;expr&gt;' for simple cases (#15444)</title>
<updated>2020-01-28T00:12:38+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2020-01-28T00:12:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=f398a0df8a2105b2fdeaeab54505451169b0a869'/>
<id>f398a0df8a2105b2fdeaeab54505451169b0a869</id>
<content type='text'>
This PR uses simple cases of PEP 380 to rewrite:

for v in g:
    yield v
into:

yield from &lt;expr&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR uses simple cases of PEP 380 to rewrite:

for v in g:
    yield v
into:

yield from &lt;expr&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Python2 Cleanups</title>
<updated>2020-01-21T21:46:27+00:00</updated>
<author>
<name>Seth Troisi</name>
<email>sethtroisi@google.com</email>
</author>
<published>2020-01-21T21:46:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=6737f241454688f6ea59a883f6c6e3fe8eff8e8b'/>
<id>6737f241454688f6ea59a883f6c6e3fe8eff8e8b</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://91.123.203.49/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>
<entry>
<title>MAINT: Remove unnecessary 'from __future__ import ...' statements</title>
<updated>2020-01-03T15:48:11+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-08-27T11:36:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=ed1e9659f103260a32536b4a7615393e3b1173dc'/>
<id>ed1e9659f103260a32536b4a7615393e3b1173dc</id>
<content type='text'>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Add assert_array_equal test for big integer arrays</title>
<updated>2019-12-25T18:49:45+00:00</updated>
<author>
<name>Maxwell Aladago</name>
<email>maxwell.aladago@gmail.com</email>
</author>
<published>2019-08-22T14:43:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=a1bfe6e3c9cfd81a0ca235cd806ab7098dd93a5c'/>
<id>a1bfe6e3c9cfd81a0ca235cd806ab7098dd93a5c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Fix randint 0d limits and other 0d cleanups (#15126)</title>
<updated>2019-12-18T21:14:26+00:00</updated>
<author>
<name>Nico Schlömer</name>
<email>nico.schloemer@gmail.com</email>
</author>
<published>2019-12-18T21:14:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=6d69a9e163858de5d0ea2ae810b8febc7eec1dbc'/>
<id>6d69a9e163858de5d0ea2ae810b8febc7eec1dbc</id>
<content type='text'>
* MAINT: only treat 0d case separately in randint, simplify some tests</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* MAINT: only treat 0d case separately in randint, simplify some tests</pre>
</div>
</content>
</entry>
<entry>
<title>a separate test for scalars base on review comments</title>
<updated>2019-09-08T15:32:58+00:00</updated>
<author>
<name>Maxwell Aladago</name>
<email>maxwell.aladago@gmail.com</email>
</author>
<published>2019-09-08T15:32:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=3e75bec894ad5ef231ed912fc9b943d3a4fc327f'/>
<id>3e75bec894ad5ef231ed912fc9b943d3a4fc327f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
