<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/polynomial/tests, branch v1.18.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>TST: hit the deprecationwarning</title>
<updated>2019-07-14T15:30:43+00:00</updated>
<author>
<name>patto90</name>
<email>andrea.pattori@gmail.com</email>
</author>
<published>2019-07-14T15:30:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a3f631a59fea34e44b2cca2b5ea234e56aff4645'/>
<id>a3f631a59fea34e44b2cca2b5ea234e56aff4645</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>check also warning message</title>
<updated>2019-07-14T14:41:17+00:00</updated>
<author>
<name>patto90</name>
<email>andrea.pattori@gmail.com</email>
</author>
<published>2019-07-14T14:41:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b7d56364ca473e9c5a88f90ed0c6ae188b4f1389'/>
<id>b7d56364ca473e9c5a88f90ed0c6ae188b4f1389</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add test to hit RankWarning in polyutils._fit</title>
<updated>2019-07-13T23:23:49+00:00</updated>
<author>
<name>patto90</name>
<email>andrea.pattori@gmail.com</email>
</author>
<published>2019-07-13T23:23:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dc4cdc8c1d388c921dd732596e9130f5db79f40f'/>
<id>dc4cdc8c1d388c921dd732596e9130f5db79f40f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DEP: polynomial: Be stricter about integral arguments</title>
<updated>2019-03-16T17:04:58+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2019-03-12T06:49:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=0764929543c85decde9d664367dbf7d8f137fe1f'/>
<id>0764929543c85decde9d664367dbf7d8f137fe1f</id>
<content type='text'>
This changes the behavior for:
* The `deg`  and `axis` arguments of `&lt;type&gt;der`
* The `deg`  and `axis` arguments of `&lt;type&gt;int`
* The `deg`  argument of `&lt;type&gt;gauss`
* The `deg`  argument of `&lt;type&gt;vander2d`
* The `deg`  argument of `&lt;type&gt;vander3d`

The old behavior was:
* Raise `ValueError` if the argument is a float, but not an integral one
* Allow a float like `1.0` to mean `1`.

This is inconsistent with most other integer-accepting APIs in numpy, which require these to be actual integers, and raise TypeError when they are not.

The new behavior is:
* Raise `TypeError` if the argument is a float, but not an integral one
* Emit a `DeprecationWarning` if a float like `1.0` is passed, continuing to allow it its old meaning.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This changes the behavior for:
* The `deg`  and `axis` arguments of `&lt;type&gt;der`
* The `deg`  and `axis` arguments of `&lt;type&gt;int`
* The `deg`  argument of `&lt;type&gt;gauss`
* The `deg`  argument of `&lt;type&gt;vander2d`
* The `deg`  argument of `&lt;type&gt;vander3d`

The old behavior was:
* Raise `ValueError` if the argument is a float, but not an integral one
* Allow a float like `1.0` to mean `1`.

This is inconsistent with most other integer-accepting APIs in numpy, which require these to be actual integers, and raise TypeError when they are not.

The new behavior is:
* Raise `TypeError` if the argument is a float, but not an integral one
* Emit a `DeprecationWarning` if a float like `1.0` is passed, continuing to allow it its old meaning.
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: polyval returned Non-Masked Arrays for Masked Input.</title>
<updated>2018-10-21T20:18:34+00:00</updated>
<author>
<name>Joachim Hereth</name>
<email>joachim.hereth@numberfour.eu</email>
</author>
<published>2018-10-21T20:18:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=af6cb03920f3ae62cb8a8c871edeccbcd8609955'/>
<id>af6cb03920f3ae62cb8a8c871edeccbcd8609955</id>
<content type='text'>
This fix will preserve subtypes of ndarray when given as input (x)
to the polyval function. In particular, the results for masked
values of a masked array will be masked.

Fixes #2477.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fix will preserve subtypes of ndarray when given as input (x)
to the polyval function. In particular, the results for masked
values of a masked array will be masked.

Fixes #2477.
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: use reduce's defaul param rather than a ternary operator</title>
<updated>2018-08-26T21:53:23+00:00</updated>
<author>
<name>Jeffrey Yancey</name>
<email>jeffrey@octane5.com</email>
</author>
<published>2018-08-26T21:53:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=4c8e91e6ad07fcae15888ae9c78338f37f3d77ae'/>
<id>4c8e91e6ad07fcae15888ae9c78338f37f3d77ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: add missing tests for all polynomial subclass pow fns.</title>
<updated>2018-08-26T20:50:37+00:00</updated>
<author>
<name>Jeffrey Yancey</name>
<email>jeffrey@octane5.com</email>
</author>
<published>2018-08-26T20:50:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bfc0020621a931726e219a013e08e9f96e767a33'/>
<id>bfc0020621a931726e219a013e08e9f96e767a33</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Add support for ipython latex printing to polynomial</title>
<updated>2018-08-12T21:27:39+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2018-07-07T05:12:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=e6e60c02e2c8833e45eab575732011e75b5b7c73'/>
<id>e6e60c02e2c8833e45eab575732011e75b5b7c73</id>
<content type='text'>
Choices made, and the alternatives rejected (for no particularly strong reason):

1. Show terms in ascending order, to match their internal representation
  * alternative: descending, to match convention
2. Shows 0 terms in gray
  * alternative: omit entirely
  * alternative: show normally to aid comparison
3. Write each term as `basis(ax + b)
  * alternative: write as `basis(u) ... where u = ax + b`
  * alternative: show the normalized polynomial

In future it would perhaps make sense to expose these options to the end user
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Choices made, and the alternatives rejected (for no particularly strong reason):

1. Show terms in ascending order, to match their internal representation
  * alternative: descending, to match convention
2. Shows 0 terms in gray
  * alternative: omit entirely
  * alternative: show normally to aid comparison
3. Write each term as `basis(ax + b)
  * alternative: write as `basis(u) ... where u = ax + b`
  * alternative: show the normalized polynomial

In future it would perhaps make sense to expose these options to the end user
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: move matrix tests in core, polynomial to matrixlib.</title>
<updated>2018-04-29T21:37:50+00:00</updated>
<author>
<name>Marten van Kerkwijk</name>
<email>mhvk@astro.utoronto.ca</email>
</author>
<published>2018-04-29T19:24:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d7e0c7e34b293ab32a46960c65d063446115d4e8'/>
<id>d7e0c7e34b293ab32a46960c65d063446115d4e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>TST: Replace yield tests in polynomial/tests/test_classes.</title>
<updated>2018-04-08T14:52:04+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2018-04-07T16:16:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8ccaac7c7814181b1d0b4e14b9cb08f85573386b'/>
<id>8ccaac7c7814181b1d0b4e14b9cb08f85573386b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
