<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/testing/_private/utils.py, branch pr/19857</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>For Pyston the refcount of "immortal" objects is set to ~infinity</title>
<updated>2021-07-07T17:49:22+00:00</updated>
<author>
<name>slepton</name>
<email>slepton@posteo.de</email>
</author>
<published>2021-07-07T06:27:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=984593982f0baf4be771cf578635994c88559078'/>
<id>984593982f0baf4be771cf578635994c88559078</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 two private functions from `__all__`</title>
<updated>2021-06-06T15:58:24+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>b.f.van.beek@vu.nl</email>
</author>
<published>2021-06-02T00:58:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=3c8e5da46c1440ea0eb3fe66fdc897d3fbae194d'/>
<id>3c8e5da46c1440ea0eb3fe66fdc897d3fbae194d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Use: from numpy.testing import ...</title>
<updated>2021-04-13T21:54:54+00:00</updated>
<author>
<name>Tim Hoffmann</name>
<email>2836374+timhoffm@users.noreply.github.com</email>
</author>
<published>2021-04-13T21:54:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=80e4bf97bc54a70870b0f7e02101f0d6bef4147c'/>
<id>80e4bf97bc54a70870b0f7e02101f0d6bef4147c</id>
<content type='text'>
instead of `import numpy.testing as npt`.

- all of NumPy's own tests themselves use the from-import variant
- There's `import numpy.typing as npt` around in some places so
  we should not abbreviate another module import with `npt`.

Optional further enhancement: If this is a convention we also want
users to adopt, this should be mentioned in the module docstring of
`numpy.testing`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
instead of `import numpy.testing as npt`.

- all of NumPy's own tests themselves use the from-import variant
- There's `import numpy.typing as npt` around in some places so
  we should not abbreviate another module import with `npt`.

Optional further enhancement: If this is a convention we also want
users to adopt, this should be mentioned in the module docstring of
`numpy.testing`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #18642 from seberg/splitup-faster-argparsing-optimize-asarray</title>
<updated>2021-03-21T05:48:10+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2021-03-21T05:48:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9e47444aa66ae055c3ef5a01d579d2eb52606f20'/>
<id>9e47444aa66ae055c3ef5a01d579d2eb52606f20</id>
<content type='text'>
ENH: Use new argument parsing for array creation functions</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ENH: Use new argument parsing for array creation functions</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: use super() as described by PEP 3135</title>
<updated>2021-03-19T09:14:30+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2021-03-19T09:03:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=c1aa1af62f6e9fcdda92d6d0991b15051a565814'/>
<id>c1aa1af62f6e9fcdda92d6d0991b15051a565814</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Use new argument parsing for array creation functions</title>
<updated>2021-03-18T20:37:20+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2020-12-06T04:38:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f531110689a646f574ad1529d78b6047cf397f3e'/>
<id>f531110689a646f574ad1529d78b6047cf397f3e</id>
<content type='text'>
The array creation functions have the most to gain:

1. np.asarray is 4 times faster and commonly used.
2. Other functions are wrapped using __array_function__ in Python
   making it more difficult

This commit (unfortunatly) has to do a few things:

* Modify __array_function__ C-side dispatching to accomodate
  the fastcall argument convention.
* Move asarray, etc. to C after removing all "fast paths" from
  np.array (simplifying the code)
* Fixup imports, since asarray was imported directly in a few places
* Replace some places where `np.array` was probably used for speed
  instead of np.asarray or similar. (or by accident in 1 or 2 places)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The array creation functions have the most to gain:

1. np.asarray is 4 times faster and commonly used.
2. Other functions are wrapped using __array_function__ in Python
   making it more difficult

This commit (unfortunatly) has to do a few things:

* Modify __array_function__ C-side dispatching to accomodate
  the fastcall argument convention.
* Move asarray, etc. to C after removing all "fast paths" from
  np.array (simplifying the code)
* Fixup imports, since asarray was imported directly in a few places
* Replace some places where `np.array` was probably used for speed
  instead of np.asarray or similar. (or by accident in 1 or 2 places)
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fix a couple of reference to verbatim and vice versa</title>
<updated>2020-12-19T04:49:36+00:00</updated>
<author>
<name>Matthias Bussonnier</name>
<email>bussonniermatthias@gmail.com</email>
</author>
<published>2020-12-14T01:08:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=09cbb7495b92a37ddfb5e7d1bc2e9964bc6a0609'/>
<id>09cbb7495b92a37ddfb5e7d1bc2e9964bc6a0609</id>
<content type='text'>
This update a coupe of references (single backticks) that actually are not to
verbatim/code (double backticks); and a couple of verbatim to reference
when they do actually exists and can be resolved in context.

I probably missed other; and stayed simple but spoted a few other
inconsistencies that I did not fix:

  - some ``...`` could actually be :math:`...` but not always clear if
  it would be better.
  - some intervals are [``...``], other are ``[...]``

I guess they could be discussed individually; it was mostly the failing
references that bothered me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This update a coupe of references (single backticks) that actually are not to
verbatim/code (double backticks); and a couple of verbatim to reference
when they do actually exists and can be resolved in context.

I probably missed other; and stayed simple but spoted a few other
inconsistencies that I did not fix:

  - some ``...`` could actually be :math:`...` but not always clear if
  it would be better.
  - some intervals are [``...``], other are ``[...]``

I guess they could be discussed individually; it was mostly the failing
references that bothered me.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix AttributeError: 'bool' object has no attribute 'ndim'</title>
<updated>2020-12-03T20:35:40+00:00</updated>
<author>
<name>Christoph Gohlke</name>
<email>cgohlke@uci.edu</email>
</author>
<published>2020-12-03T20:35:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=bd7609c2aa11de9f46d084e607ae42d1bbe17797'/>
<id>bd7609c2aa11de9f46d084e607ae42d1bbe17797</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>minor typographic change</title>
<updated>2020-10-24T11:00:52+00:00</updated>
<author>
<name>Jakob</name>
<email>jakobjakobson13@posteo.de</email>
</author>
<published>2020-10-24T11:00:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=74aee159583bf4631fbbdd12eef7e2bee394d907'/>
<id>74aee159583bf4631fbbdd12eef7e2bee394d907</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>more fixes</title>
<updated>2020-10-23T21:45:50+00:00</updated>
<author>
<name>Jakob</name>
<email>jakobjakobson13@posteo.de</email>
</author>
<published>2020-10-23T21:45:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=196d4eb031548c37577c086db9658c21f3ea2b81'/>
<id>196d4eb031548c37577c086db9658c21f3ea2b81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
