<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/testing/utils.py, branch v1.9.2</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>Merge pull request #5374 from lebigot/patch-1</title>
<updated>2014-12-24T12:40:00+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-12-24T12:40:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bd7fcee2efe3a1b40f46ef271b99bb1caa4bc8cc'/>
<id>bd7fcee2efe3a1b40f46ef271b99bb1caa4bc8cc</id>
<content type='text'>
DOC: Fixed incorrect assert_array_almost_equal_nulp documentation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC: Fixed incorrect assert_array_almost_equal_nulp documentation
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fixed incorrect assert_array_almost_equal_nulp documentation</title>
<updated>2014-12-24T12:38:13+00:00</updated>
<author>
<name>Eric O. LEBIGOT (EOL)</name>
<email>eric.lebigot@normalesup.org</email>
</author>
<published>2014-12-17T08:30:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3b6217f3799f85686c1ae87bbdc5cb10ad4585ec'/>
<id>3b6217f3799f85686c1ae87bbdc5cb10ad4585ec</id>
<content type='text'>
The `max()` function previously used does not work with two array-like.
`maximum()` does, and is what is essentially used in the code
(`ref = nulp * np.spacing(np.where(ax &gt; ay, ax, ay))`).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The `max()` function previously used does not work with two array-like.
`maximum()` does, and is what is essentially used in the code
(`ref = nulp * np.spacing(np.where(ax &gt; ay, ax, ay))`).
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #5048 from juliantaylor/subclass-test-fix</title>
<updated>2014-09-04T22:57:48+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-09-04T22:57:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=859d2f13c6a603c904701f509bd0bc52efb31295'/>
<id>859d2f13c6a603c904701f509bd0bc52efb31295</id>
<content type='text'>
BUG: fix array_almost_equal for array subclasses
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: fix array_almost_equal for array subclasses
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix array_almost_equal for array subclasses</title>
<updated>2014-09-04T22:19:04+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-09-04T22:17:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dfc567790badcc87822a39f5c35f0dd78b8c1599'/>
<id>dfc567790badcc87822a39f5c35f0dd78b8c1599</id>
<content type='text'>
introduced in gh-4105/ab04e1ae0e8eca717bc7e42f3b0a60c9ff764289
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
introduced in gh-4105/ab04e1ae0e8eca717bc7e42f3b0a60c9ff764289
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4906 from juliantaylor/doc-update</title>
<updated>2014-07-27T18:22:29+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-07-27T18:22:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8fa45b4d5ef1ac9dab9558fa335491991da83efa'/>
<id>8fa45b4d5ef1ac9dab9558fa335491991da83efa</id>
<content type='text'>
documentation updates for 1.9</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
documentation updates for 1.9</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: numpy.testing documentation clarification of "Raise an assertion"</title>
<updated>2014-07-27T18:05:28+00:00</updated>
<author>
<name>Austin Godber</name>
<email>godber@uberhip.com</email>
</author>
<published>2014-07-18T13:40:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=638e627c813590a91514b255aeb13a34dc2ac51e'/>
<id>638e627c813590a91514b255aeb13a34dc2ac51e</id>
<content type='text'>
"Raise an assertion" was changed to "Raises an AssertionError" to clarify that
an exception named AssertionError will be raised.
Closes gh-4884

[ci skip]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"Raise an assertion" was changed to "Raises an AssertionError" to clarify that
an exception named AssertionError will be raised.
Closes gh-4884

[ci skip]
</pre>
</div>
</content>
</entry>
<entry>
<title>Move tempdir context manager to numpy.testing.utils</title>
<updated>2014-06-30T09:12:32+00:00</updated>
<author>
<name>Olivier Grisel</name>
<email>olivier.grisel@ensta.org</email>
</author>
<published>2014-06-30T09:09:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=290f192465dc68b9e037ec4c1c2dc6fb522f2fdc'/>
<id>290f192465dc68b9e037ec4c1c2dc6fb522f2fdc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: fix examples in f2py documentation.  They didn't appear at all in html.</title>
<updated>2014-04-21T14:14:21+00:00</updated>
<author>
<name>Ralf Gommers</name>
<email>ralf.gommers@googlemail.com</email>
</author>
<published>2014-04-21T14:14:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1dff3cea279dd1736dfee03334404eb381fedc75'/>
<id>1dff3cea279dd1736dfee03334404eb381fedc75</id>
<content type='text'>
Also fix example in testing that Sphinx saw as section header.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also fix example in testing that Sphinx saw as section header.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4542 from immerrr/fix-bincount-systemerror</title>
<updated>2014-03-27T00:10:34+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-03-27T00:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=419cb15db0c4907082ab5327a7a9ec72b8e3d83c'/>
<id>419cb15db0c4907082ab5327a7a9ec72b8e3d83c</id>
<content type='text'>
BUG: fix some errors raised when minlength is incorrect in np.bincount</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: fix some errors raised when minlength is incorrect in np.bincount</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: export nose.tools.assert_raises_regex via numpy.testing.utils</title>
<updated>2014-03-26T05:52:18+00:00</updated>
<author>
<name>immerrr</name>
<email>immerrr@gmail.com</email>
</author>
<published>2014-03-25T18:28:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=60d434766b1a5a315674811e544d33dea5b2323d'/>
<id>60d434766b1a5a315674811e544d33dea5b2323d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
