<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/core/overrides.py, branch meson</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 #22619 from seberg/move-set_module</title>
<updated>2022-11-29T21:33:27+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2022-11-29T21:33:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b0b7a066c393a1d7cc69e9a6db7c7c7a3602b293'/>
<id>b0b7a066c393a1d7cc69e9a6db7c7c7a3602b293</id>
<content type='text'>
MAINT: Move set_module from numpy.core to numpy._utils</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MAINT: Move set_module from numpy.core to numpy._utils</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Move _inspect and _pep440 from compat to _utils</title>
<updated>2022-11-25T13:02:33+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2022-11-25T12:43:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=dab75729662b1335d714a3b5f500ee7f2914a21d'/>
<id>dab75729662b1335d714a3b5f500ee7f2914a21d</id>
<content type='text'>
Note that unfortunately, compat does expose _inspect as well,
so the import remains (just the definition place moves).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note that unfortunately, compat does expose _inspect as well,
so the import remains (just the definition place moves).
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Move set_module to numpy.core to use without C import</title>
<updated>2022-11-24T16:03:42+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastianb@nvidia.com</email>
</author>
<published>2022-11-18T14:11:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7c361420b4f81713f593ebbb5c924121c1f2d19d'/>
<id>7c361420b4f81713f593ebbb5c924121c1f2d19d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>API: Add numpy.testing.overrides to aid testing of custom array containers</title>
<updated>2022-11-16T16:14:25+00:00</updated>
<author>
<name>Nathan Goldbaum</name>
<email>nathan.goldbaum@gmail.com</email>
</author>
<published>2022-11-04T18:13:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1a8d3ca45f0a7294784bc200ec436dc8563f654a'/>
<id>1a8d3ca45f0a7294784bc200ec436dc8563f654a</id>
<content type='text'>
Closes #15544
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closes #15544
</pre>
</div>
</content>
</entry>
<entry>
<title>Removed two unused imports</title>
<updated>2022-07-15T00:52:56+00:00</updated>
<author>
<name>Callum O'Riley</name>
<email>callumchristopheroriley@gmail.com</email>
</author>
<published>2022-07-15T00:52:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=1b77e996d801b0f89378ac528d71804f6ca303f9'/>
<id>1b77e996d801b0f89378ac528d71804f6ca303f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Ensure dispatcher TypeErrors report original name</title>
<updated>2022-06-11T02:41:48+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2022-06-11T01:49:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8fabdecb556354559f9dcc280c75001f3df8aaa8'/>
<id>8fabdecb556354559f9dcc280c75001f3df8aaa8</id>
<content type='text'>
This replaces the name in the TypeError with the actually raised
name.  In principle we could add one more check, because a
signature related TypeError must have a traceback with exactly
one entry (so `sys.exc_info()[2].tb_next is None`).
In practice this seems unnecessary though.

This ensures the following message:

    &gt;&gt;&gt; np.histogram(asdf=3)
    TypeError: histogram() got an unexpected keyword argument 'asdf'

Closes gh-21647
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces the name in the TypeError with the actually raised
name.  In principle we could add one more check, because a
signature related TypeError must have a traceback with exactly
one entry (so `sys.exc_info()[2].tb_next is None`).
In practice this seems unnecessary though.

This ensures the following message:

    &gt;&gt;&gt; np.histogram(asdf=3)
    TypeError: histogram() got an unexpected keyword argument 'asdf'

Closes gh-21647
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: add note about array_like being optional</title>
<updated>2022-02-08T19:29:49+00:00</updated>
<author>
<name>melissawm</name>
<email>melissawm.github@gmail.com</email>
</author>
<published>2022-02-08T17:02:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3f18d8fab26fb473e495f2e82600ce170d1c577c'/>
<id>3f18d8fab26fb473e495f2e82600ce170d1c577c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: LGTM.com recommendation: Unused import</title>
<updated>2021-10-07T05:55:33+00:00</updated>
<author>
<name>Dimitri Papadopoulos</name>
<email>3234522+DimitriPapadopoulos@users.noreply.github.com</email>
</author>
<published>2021-10-06T21:08:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=53b98832aee924fdcde19bbc3eefa8bdba5fb3d6'/>
<id>53b98832aee924fdcde19bbc3eefa8bdba5fb3d6</id>
<content type='text'>
Import of 'histogram' is not used.
Import of 'histogramdd' is not used.
Import of 'textwrap' is not used.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Import of 'histogram' is not used.
Import of 'histogramdd' is not used.
Import of 'textwrap' is not used.
</pre>
</div>
</content>
</entry>
<entry>
<title>Update numpy/core/overrides.py</title>
<updated>2021-08-25T21:33:32+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2021-08-25T21:27:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=d7d07ea88f06b1e37bfd5dc770e2b532378186b0'/>
<id>d7d07ea88f06b1e37bfd5dc770e2b532378186b0</id>
<content type='text'>
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>remove import time compile</title>
<updated>2021-08-25T21:32:26+00:00</updated>
<author>
<name>Irit Katriel</name>
<email>iritkatriel@yahoo.com</email>
</author>
<published>2021-08-10T15:01:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=8b885046e1e1f11a76f6acdf9a5426280cf97bac'/>
<id>8b885046e1e1f11a76f6acdf9a5426280cf97bac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
