<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/tests/test_function_base.py, branch v1.9.0</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 #5022 from seberg/structured-insert</title>
<updated>2014-09-02T21:26:56+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-09-02T21:26:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ef101b864487f2e0dfe0901fa1e11a727f6ac5a2'/>
<id>ef101b864487f2e0dfe0901fa1e11a727f6ac5a2</id>
<content type='text'>
BUG: Fix np.insert for inserting a single item into a structured array
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: Fix np.insert for inserting a single item into a structured array
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix np.insert for inserting a single item into a structured array</title>
<updated>2014-08-30T16:57:31+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2014-08-30T08:25:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f880b1aa7583d7c3dfc111a8b79e7e7ba364baf2'/>
<id>f880b1aa7583d7c3dfc111a8b79e7e7ba364baf2</id>
<content type='text'>
Note that there are some object array special cases because of allowing
multiple inserts. `np.array(..., dtype=object)` is not always clear.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that there are some object array special cases because of allowing
multiple inserts. `np.array(..., dtype=object)` is not always clear.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4989 from juliantaylor/percentile-fix</title>
<updated>2014-08-24T17:14:05+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-08-24T17:14:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3f5ae6d9e783d779fa98a8e140fb3f196a8cf498'/>
<id>3f5ae6d9e783d779fa98a8e140fb3f196a8cf498</id>
<content type='text'>
BUG: don't overwrite input percentile arrays
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: don't overwrite input percentile arrays
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: don't overwrite input percentile arrays</title>
<updated>2014-08-24T16:02:11+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-08-24T15:54:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=040d0408f4cdb0a472e654acd68c8e1c3fbd84f7'/>
<id>040d0408f4cdb0a472e654acd68c8e1c3fbd84f7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: handle rounding issue with histogram edges on float32 data</title>
<updated>2014-06-23T20:49:33+00:00</updated>
<author>
<name>Julian Taylor</name>
<email>jtaylor.debian@googlemail.com</email>
</author>
<published>2014-06-23T20:44:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e20d4b91d00cea1cf495d4cb85ee9bc2b7930a3d'/>
<id>e20d4b91d00cea1cf495d4cb85ee9bc2b7930a3d</id>
<content type='text'>
Following inequality causes wrong counting at the edges and can be avoided by
making the edge array of the same type as the input data.

In [1]: np.around(np.float64(6010.36962890625), 5)
Out[1]: 6010.3696300000001
In [2]: np.around(np.float32(6010.36962890625), 5)
Out[2]: 6010.3701

Closes gh-4799
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Following inequality causes wrong counting at the edges and can be avoided by
making the edge array of the same type as the input data.

In [1]: np.around(np.float64(6010.36962890625), 5)
Out[1]: 6010.3696300000001
In [2]: np.around(np.float32(6010.36962890625), 5)
Out[2]: 6010.3701

Closes gh-4799
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fixed piecewise function for 0d input</title>
<updated>2014-06-08T13:40:23+00:00</updated>
<author>
<name>Juan Luis Cano Rodríguez</name>
<email>juanlu001@gmail.com</email>
</author>
<published>2014-06-07T19:52:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=292b9ff538ea4950c7380c76cf65d1a5b108b75c'/>
<id>292b9ff538ea4950c7380c76cf65d1a5b108b75c</id>
<content type='text'>
When `x` has more than one element the condlist `[True, False]`
is being made equivalent to `[[True, False]]`, which is correct.
However, when `x` is zero dimensional the expected condlist is
`[[True], [False]]`: this commit addresses the issue. Besides,
the documentation stated that there could be undefined values
but actually these are 0 by default: using `nan` would be desirable,
but for the moment the docs were corrected. Closes #331.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When `x` has more than one element the condlist `[True, False]`
is being made equivalent to `[[True, False]]`, which is correct.
However, when `x` is zero dimensional the expected condlist is
`[[True], [False]]`: this commit addresses the issue. Besides,
the documentation stated that there could be undefined values
but actually these are 0 by default: using `nan` would be desirable,
but for the moment the docs were corrected. Closes #331.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Don't let meshgrid ignore unknown kwargs. Fixes #4755.</title>
<updated>2014-05-30T08:21:12+00:00</updated>
<author>
<name>Michael McNeil Forbes</name>
<email>michael.forbes+numpy@gmail.com</email>
</author>
<published>2014-05-29T23:22:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=83c6d769e00e5ee424221244d9d2be474c1fe532'/>
<id>83c6d769e00e5ee424221244d9d2be474c1fe532</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: fix incorrect minlength handling in np.bincount</title>
<updated>2014-03-26T05:52:18+00:00</updated>
<author>
<name>immerrr</name>
<email>immerrr@gmail.com</email>
</author>
<published>2014-03-24T05:16:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e5cf3654e81573bf583cbf6a8688a5e44fafceea'/>
<id>e5cf3654e81573bf583cbf6a8688a5e44fafceea</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #4358 from seberg/fast-select</title>
<updated>2014-03-24T16:20:28+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2014-03-24T16:20:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3a4030c650a0510b8e673f34464f4ef64212b022'/>
<id>3a4030c650a0510b8e673f34464f4ef64212b022</id>
<content type='text'>
ENH: Speed improvements and deprecations for np.select</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Speed improvements and deprecations for np.select</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Speed improvements and deprecations for np.select</title>
<updated>2014-03-23T19:33:16+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2014-02-24T14:22:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=123b319be37f01e3c4f2e42552d4ca121b27ca38'/>
<id>123b319be37f01e3c4f2e42552d4ca121b27ca38</id>
<content type='text'>
The idea for this (and some of the code) originally comes from
Graeme B Bell (gh-3537).
Choose is not as fast and pretty limited, so an iterative
copyto is used instead.

Closes gh-3259, gh-3537, gh-3551, and gh-3254
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The idea for this (and some of the code) originally comes from
Graeme B Bell (gh-3537).
Choose is not as fast and pretty limited, so an iterative
copyto is used instead.

Closes gh-3259, gh-3537, gh-3551, and gh-3254
</pre>
</div>
</content>
</entry>
</feed>
