<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/lib/recfunctions.py, branch v1.22.0rc2</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>ENH: Add spaces after punctuation in dtype repr/str. (#19686)</title>
<updated>2021-09-29T18:09:32+00:00</updated>
<author>
<name>Antony Lee</name>
<email>anntzer.lee@gmail.com</email>
</author>
<published>2021-09-29T18:09:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=a6f7d14e60e3d56fe1c0073730a06e23cf696c5a'/>
<id>a6f7d14e60e3d56fe1c0073730a06e23cf696c5a</id>
<content type='text'>
Before:
```
In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]})
Out[1]: dtype({'names':['a'], 'formats':['&lt;i8'], 'offsets':[2], 'itemsize':10})
```

After:
```
In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]})
Out[1]: dtype({'names': ['a'], 'formats': ['&lt;i8'], 'offsets': [2], 'itemsize': 10})
```

* Allow switching back to old dtype printing format.

* Add changelog.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before:
```
In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]})
Out[1]: dtype({'names':['a'], 'formats':['&lt;i8'], 'offsets':[2], 'itemsize':10})
```

After:
```
In [1]: np.dtype({"names": ["a"], "formats": [int], "offsets": [2]})
Out[1]: dtype({'names': ['a'], 'formats': ['&lt;i8'], 'offsets': [2], 'itemsize': 10})
```

* Allow switching back to old dtype printing format.

* Add changelog.</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fix syntax errors in docstrings for versionchanged, versionadded (#17338)</title>
<updated>2020-09-17T08:06:41+00:00</updated>
<author>
<name>Bradley Dice</name>
<email>bdice@bradleydice.com</email>
</author>
<published>2020-09-17T08:06:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=60a1e10c4593736b188b38e7d7c51aefb213af6a'/>
<id>60a1e10c4593736b188b38e7d7c51aefb213af6a</id>
<content type='text'>
* DOC: Fix typos in versionchanged.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* DOC: Fix typos in versionchanged.</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Fixed typo in lib/recfunctions.py (#16973)</title>
<updated>2020-07-29T19:37:45+00:00</updated>
<author>
<name>Jesse Li</name>
<email>jesse.li2002@gmail.com</email>
</author>
<published>2020-07-29T19:37:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f99c01a29967886975cc646e0e46623b1a2bcde9'/>
<id>f99c01a29967886975cc646e0e46623b1a2bcde9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: use 'yield from &lt;expr&gt;' for simple cases (#15444)</title>
<updated>2020-01-28T00:12:38+00:00</updated>
<author>
<name>Mike Taves</name>
<email>mwtoews@gmail.com</email>
</author>
<published>2020-01-28T00:12:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=f398a0df8a2105b2fdeaeab54505451169b0a869'/>
<id>f398a0df8a2105b2fdeaeab54505451169b0a869</id>
<content type='text'>
This PR uses simple cases of PEP 380 to rewrite:

for v in g:
    yield v
into:

yield from &lt;expr&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This PR uses simple cases of PEP 380 to rewrite:

for v in g:
    yield v
into:

yield from &lt;expr&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Replace basestring with str.</title>
<updated>2020-01-23T21:56:57+00:00</updated>
<author>
<name>Charles Harris</name>
<email>charlesr.harris@gmail.com</email>
</author>
<published>2020-01-23T21:44:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b4e3a4227e3a9cfe28717db458e67d79e916a418'/>
<id>b4e3a4227e3a9cfe28717db458e67d79e916a418</id>
<content type='text'>
This replaces basestring with str except in

- tools/npy_tempita/
- numpy/compat/py3k.py
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This replaces basestring with str except in

- tools/npy_tempita/
- numpy/compat/py3k.py
</pre>
</div>
</content>
</entry>
<entry>
<title>[MAINT] Cleanup python2 sys.version checks</title>
<updated>2020-01-20T23:22:57+00:00</updated>
<author>
<name>Seth Troisi</name>
<email>sethtroisi@google.com</email>
</author>
<published>2020-01-16T01:03:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=9a21ec857b22ff0140a7f71a12f2cc943f163404'/>
<id>9a21ec857b22ff0140a7f71a12f2cc943f163404</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 typos</title>
<updated>2020-01-14T12:27:33+00:00</updated>
<author>
<name>Brian Wignall</name>
<email>brianwignall@gmail.com</email>
</author>
<published>2020-01-14T12:27:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=b485da191ec08597835292e45f3ee52f3b1e23e5'/>
<id>b485da191ec08597835292e45f3ee52f3b1e23e5</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 unnecessary 'from __future__ import ...' statements</title>
<updated>2020-01-03T15:48:11+00:00</updated>
<author>
<name>Jon Dufresne</name>
<email>jon.dufresne@gmail.com</email>
</author>
<published>2019-08-27T11:36:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=ed1e9659f103260a32536b4a7615393e3b1173dc'/>
<id>ed1e9659f103260a32536b4a7615393e3b1173dc</id>
<content type='text'>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
As numpy is Python 3 only, these import statements are now unnecessary
and don't alter runtime behavior.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #14511 from eric-wieser/fix-flatten_dtype</title>
<updated>2019-09-16T06:36:39+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2019-09-16T06:36:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=5e74e9d5996419dd10c30e5d397f2a0dcf2ca0a9'/>
<id>5e74e9d5996419dd10c30e5d397f2a0dcf2ca0a9</id>
<content type='text'>
BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly</pre>
</div>
</content>
</entry>
<entry>
<title>BUG: Fix flatten_dtype so that nested 0-field structs are flattened correctly</title>
<updated>2019-09-14T20:10:10+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2019-08-19T01:59:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=003bdc25b75566de64a90e223338b4bd4565155a'/>
<id>003bdc25b75566de64a90e223338b4bd4565155a</id>
<content type='text'>
This affects the behavior of merge_arrays.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This affects the behavior of merge_arrays.
</pre>
</div>
</content>
</entry>
</feed>
