<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/numpy.git/doc/source/reference, branch build_test</title>
<subtitle>github.com: numpy/numpy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/'/>
<entry>
<title>API: Do not import sliding_window_view to main namespace</title>
<updated>2020-11-05T23:41:49+00:00</updated>
<author>
<name>Sebastian Berg</name>
<email>sebastian@sipsolutions.net</email>
</author>
<published>2020-11-05T23:41:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=7235d30f3da0a64bf9198db50b19669eb93e6ec6'/>
<id>7235d30f3da0a64bf9198db50b19669eb93e6ec6</id>
<content type='text'>
At least for now, lets not import it to the main namespace, since there is
no agreement that this is a good idea.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At least for now, lets not import it to the main namespace, since there is
no agreement that this is a good idea.
</pre>
</div>
</content>
</entry>
<entry>
<title>ENH: Implement sliding window (gh-17394)</title>
<updated>2020-11-05T16:51:16+00:00</updated>
<author>
<name>Klaus Zimmermann</name>
<email>klaus.zimmermann@smhi.se</email>
</author>
<published>2020-11-05T16:51:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=43f80863ba2994a186293d86d516204ef38b0043'/>
<id>43f80863ba2994a186293d86d516204ef38b0043</id>
<content type='text'>
* implement sliding_window_view #7753
Test cases are shown in the issue page.

* Add Example Cases

* Add step_size and N-dim support

* Add shape and step_size check. Remove warning.

* Remove shape default
Add step_size default's description.

* Give proper parameter name 'step'

* fix a parameter description mistake

* implement test function for sliding_window_view()

* implement test function for sliding_window_view()

* Fix according to @eric-wieser comments

* Change arange to ogrid in Examples

* remove np.squeeze on return line

* Clarify document to avoid parameter confusion.

* add `writable` and more explanation in docs

* resolve a write conflit

* fixes according to @seberg review

* resolve write hazard

* remove outdated docs.

* change referring according to @mattip.
change 'writeable' to 'readonly' as @seberg suggest.
remove 'step' as @eric-wieser request

* fix test minor error

* DOC: Grammar fixes

* STY: Add missing line break required by PEP8

* + Change readonly parameter to writeable.
+ Update writeable description.
+ Fix a few parameter checks.
+ Other minor improvements.

* Move to new api as proposed by @eric-wieser

- Change api to follow suggestion by Eric Wieser in
  https://github.com/numpy/numpy/pull/10771#issuecomment-524715356
- Update docstring
- Add more tests

* Improve documentation

* Add sliding_window_view to documentation index

* Apply suggestions from code review

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

* Fix window shape check

* Add `sliding_window_view` to __all__

* Add tests for  error cases

* Add array_function dispatching

* Change dispatcher argument defaults to None

* Simplify array function dispatching

* Added "np." prefix to doctests

* Split tests

* Improved docstring

* Add release note

* Fix docstring formatting

* Fix doctest

* Remove namespacing in documentation indexing

* Improve docstring

* Improved docstring

* Simplified docstring

* Improve docstring to make pseudo code stand out

* Improve docstring

* Add simple application example

* Correct release note

* Improve link with as_strides

* Add note about performance

* Tidy up main doc string

* Make language on performance warning stronger

* Bugfix: pass subok and writeable to as_strided

* Add writeable test

* Add subok test

* Change subok test to use custom array subclass instead of unsupported MaskedArray

* Add version added information

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

Co-authored-by: Fanjin &lt;fjzeng@ucsd.edu&gt;
Co-authored-by: Fanjin Zeng &lt;Fnjn@users.noreply.github.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
Co-authored-by: fanjin &lt;fjzeng@outlook.com&gt;

Closes gh-7753</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* implement sliding_window_view #7753
Test cases are shown in the issue page.

* Add Example Cases

* Add step_size and N-dim support

* Add shape and step_size check. Remove warning.

* Remove shape default
Add step_size default's description.

* Give proper parameter name 'step'

* fix a parameter description mistake

* implement test function for sliding_window_view()

* implement test function for sliding_window_view()

* Fix according to @eric-wieser comments

* Change arange to ogrid in Examples

* remove np.squeeze on return line

* Clarify document to avoid parameter confusion.

* add `writable` and more explanation in docs

* resolve a write conflit

* fixes according to @seberg review

* resolve write hazard

* remove outdated docs.

* change referring according to @mattip.
change 'writeable' to 'readonly' as @seberg suggest.
remove 'step' as @eric-wieser request

* fix test minor error

* DOC: Grammar fixes

* STY: Add missing line break required by PEP8

* + Change readonly parameter to writeable.
+ Update writeable description.
+ Fix a few parameter checks.
+ Other minor improvements.

* Move to new api as proposed by @eric-wieser

- Change api to follow suggestion by Eric Wieser in
  https://github.com/numpy/numpy/pull/10771#issuecomment-524715356
- Update docstring
- Add more tests

* Improve documentation

* Add sliding_window_view to documentation index

* Apply suggestions from code review

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

* Fix window shape check

* Add `sliding_window_view` to __all__

* Add tests for  error cases

* Add array_function dispatching

* Change dispatcher argument defaults to None

* Simplify array function dispatching

* Added "np." prefix to doctests

* Split tests

* Improved docstring

* Add release note

* Fix docstring formatting

* Fix doctest

* Remove namespacing in documentation indexing

* Improve docstring

* Improved docstring

* Simplified docstring

* Improve docstring to make pseudo code stand out

* Improve docstring

* Add simple application example

* Correct release note

* Improve link with as_strides

* Add note about performance

* Tidy up main doc string

* Make language on performance warning stronger

* Bugfix: pass subok and writeable to as_strided

* Add writeable test

* Add subok test

* Change subok test to use custom array subclass instead of unsupported MaskedArray

* Add version added information

Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;

Co-authored-by: Fanjin &lt;fjzeng@ucsd.edu&gt;
Co-authored-by: Fanjin Zeng &lt;Fnjn@users.noreply.github.com&gt;
Co-authored-by: Eric Wieser &lt;wieser.eric@gmail.com&gt;
Co-authored-by: fanjin &lt;fjzeng@outlook.com&gt;

Closes gh-7753</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Add ``ma.isMaskedArray`` and aliases</title>
<updated>2020-11-05T05:49:59+00:00</updated>
<author>
<name>takanori-pskq</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-11-05T05:49:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=e9611531225fce80912bcd6d22c52b7325a995ac'/>
<id>e9611531225fce80912bcd6d22c52b7325a995ac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update doc/source/reference/c-api/array.rst</title>
<updated>2020-10-26T23:12:35+00:00</updated>
<author>
<name>Takanori H</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-10-26T23:12:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=688817e760b11b27481c9a9057fbfc633fc00774'/>
<id>688817e760b11b27481c9a9057fbfc633fc00774</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>DOC: Fix some references</title>
<updated>2020-10-26T06:55:50+00:00</updated>
<author>
<name>takanori-pskq</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-10-26T05:11:44+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=d212ee4ceeb0a1ff8dba1c6d9e0cc54360e81a94'/>
<id>d212ee4ceeb0a1ff8dba1c6d9e0cc54360e81a94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Don't use Python highlighting for non-python code</title>
<updated>2020-10-25T11:46:49+00:00</updated>
<author>
<name>Eric Wieser</name>
<email>wieser.eric@gmail.com</email>
</author>
<published>2020-10-25T11:46:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=3b557bcc2216bcc7ef239a2706832fc8ebf0065e'/>
<id>3b557bcc2216bcc7ef239a2706832fc8ebf0065e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17627 from takanori-pskq/i13114-array-struct</title>
<updated>2020-10-25T06:03:52+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-10-25T06:03:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=119a0330c9cbeb13fbf8801b4f5d956659ff92cc'/>
<id>119a0330c9cbeb13fbf8801b4f5d956659ff92cc</id>
<content type='text'>
DOC: Fix the references for ``__array_*__``</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC: Fix the references for ``__array_*__``</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17630 from takanori-pskq/i13114-capsule</title>
<updated>2020-10-25T05:58:45+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-10-25T05:58:45+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=56388f8f582b7800bc3af84958e2d1b0eae1bc05'/>
<id>56388f8f582b7800bc3af84958e2d1b0eae1bc05</id>
<content type='text'>
DOC: Replace ``PyCObject`` with ``PyCapsule``</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC: Replace ``PyCObject`` with ``PyCapsule``</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #17629 from takanori-pskq/i13114-pyufunc-identity</title>
<updated>2020-10-25T05:49:59+00:00</updated>
<author>
<name>Matti Picus</name>
<email>matti.picus@gmail.com</email>
</author>
<published>2020-10-25T05:49:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=043a0421504396fa7ab0f27d66f8bb5ea539606a'/>
<id>043a0421504396fa7ab0f27d66f8bb5ea539606a</id>
<content type='text'>
DOC: Add ``identity_value`` to ``PyUFuncObject``</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DOC: Add ``identity_value`` to ``PyUFuncObject``</pre>
</div>
</content>
</entry>
<entry>
<title>DOC: Add ``identity_value`` to ``PyUFuncObject``</title>
<updated>2020-10-25T05:02:38+00:00</updated>
<author>
<name>takanori-pskq</name>
<email>takanori17h@gmail.com</email>
</author>
<published>2020-10-25T05:01:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/numpy.git/commit/?id=70c3565244ada9edaae1c1f86e48fb42cfde04d3'/>
<id>70c3565244ada9edaae1c1f86e48fb42cfde04d3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
