<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/numpy/core/arrayprint.pyi, 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>MAINT: Split `numpy.typing` into a public and private component</title>
<updated>2022-03-18T17:29:54+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2022-03-18T16:09:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7739583f5fb39c31e83010a3153fa078004e55eb'/>
<id>7739583f5fb39c31e83010a3153fa078004e55eb</id>
<content type='text'>
i.e. `numpy.typing` and `numpy._typing`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
i.e. `numpy.typing` and `numpy._typing`
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Use subscriptable `collections.abc` types over the generic aliases in …</title>
<updated>2021-12-23T20:15:00+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2021-12-21T22:41:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=fe361df62b101a27fd2ea203fb0b79b6a5f61401'/>
<id>fe361df62b101a27fd2ea203fb0b79b6a5f61401</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 subscriptable `builtins` types over the generic aliases in `typing`</title>
<updated>2021-12-23T20:15:00+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2021-12-21T19:24:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=7b5f39b5eeac583f822741eaf95a8229f2b5f8d7'/>
<id>7b5f39b5eeac583f822741eaf95a8229f2b5f8d7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Replace `Union` with the `|` operator</title>
<updated>2021-12-21T23:08:15+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2021-12-21T16:23:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=99ed44df750fedfc0bbf956c88d15befd5e760cd'/>
<id>99ed44df750fedfc0bbf956c88d15befd5e760cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>STY: Replace `Optional` with the `|` operator</title>
<updated>2021-12-21T23:08:03+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2021-12-21T15:33:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=08053b2600f4b93575d8057238861219a1a57edc'/>
<id>08053b2600f4b93575d8057238861219a1a57edc</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 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: Typos found by codespell</title>
<updated>2021-09-21T18:29:43+00:00</updated>
<author>
<name>Dimitri Papadopoulos</name>
<email>3234522+DimitriPapadopoulos@users.noreply.github.com</email>
</author>
<published>2021-09-21T07:18:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=83960267dc097742cb67ef575504afa56f82b102'/>
<id>83960267dc097742cb67ef575504afa56f82b102</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Drop .pyi code-paths specific to Python 3.7</title>
<updated>2021-08-30T13:26:54+00:00</updated>
<author>
<name>Bas van Beek</name>
<email>43369155+BvB93@users.noreply.github.com</email>
</author>
<published>2021-08-14T20:02:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=355336119136f620c27f1adcc26074eb9528c159'/>
<id>355336119136f620c27f1adcc26074eb9528c159</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BUG/ENH: fix array2string rounding bug by adding min_digits option</title>
<updated>2021-03-19T00:05:39+00:00</updated>
<author>
<name>Allan Haldane</name>
<email>allan.haldane@gmail.com</email>
</author>
<published>2021-03-15T12:27:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=75bb1a80d104561c7a1870c86e6e5f0972cde5df'/>
<id>75bb1a80d104561c7a1870c86e6e5f0972cde5df</id>
<content type='text'>
Fixes #18609
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #18609
</pre>
</div>
</content>
</entry>
<entry>
<title>MAINT: Updated annotations</title>
<updated>2021-02-01T11:35:15+00:00</updated>
<author>
<name>Mitchell Faas</name>
<email>Faas.Mitchell@gmail.com</email>
</author>
<published>2021-02-01T11:35:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/numpy.git/commit/?id=472e5e01be709a0b40a727f97208a8222c4b28ef'/>
<id>472e5e01be709a0b40a727f97208a8222c4b28ef</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
