summaryrefslogtreecommitdiff
path: root/doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Fix typos in NEPs, found by codespellDimitri Papadopoulos2021-09-221-1/+1
|
* Mix capitalization fix for page titles [sentence case implementation]Sayantika Banik2021-09-081-1/+1
|
* NEP: Accept NEP 35 as finalSebastian Berg2021-06-071-2/+2
| | | | | | | | | | This accepts NEP 35 as final. There has been no discussion about it in a long time. The current mode is strict about type input (`like=` must be an array-like). So that most of the "open" points are OK to remain open. Unless we need to discuss the name `like` or the fact that we pass an array-like itself, the previously noted open points gh-17075 all seem not very relevant anymore.
* DOC: update NEP status for accepted/finished NEPsRalf Gommers2021-02-231-0/+2
| | | | [ci skip]
* DOC: fix build warnings in NEP 35Ralf Gommers2020-12-271-3/+8
|
* NEP: NEP-35 phrasing fixPeter Andreas Entschev2020-11-131-1/+1
| | | Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
* NEP: Small NEP-35 wording fixPeter Andreas Entschev2020-11-061-3/+3
|
* NEP: Add NEP-35 instructions on reading like= downstreamPeter Andreas Entschev2020-11-061-12/+99
|
* ENH: Clarifies meta_from_array function in NEP-35Peter Andreas Entschev2020-08-191-6/+26
|
* NEP: Fix some grammar and formatting in NEP-35Peter Andreas Entschev2020-08-191-2/+2
|
* NEP: Improve grammar on NEP-35 reference to Dask's objectsPeter Andreas Entschev2020-08-191-4/+4
|
* NEP: Clarify Dask intent with `my_dask_pad` function namePeter Andreas Entschev2020-08-191-5/+8
|
* NEP: Clarify NEP-35 C implementation details.Peter Andreas Entschev2020-08-191-3/+5
|
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-3/+3
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
* NEP: Move NumPy users comment to top of NEP-35 Usage and ImpactPeter Andreas Entschev2020-08-191-7/+6
|
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-3/+2
| | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Matti Picus <matti.picus@gmail.com>
* NEP: Improve NEP-35 abstract per @mattip's suggestionPeter Andreas Entschev2020-08-191-5/+4
|
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Chunlin <fangchunlin@huawei.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Chunlin <fangchunlin@huawei.com>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Juan Nunez-Iglesias <juan.nunez-iglesias@monash.edu>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Juan Nunez-Iglesias <juan.nunez-iglesias@monash.edu>
* Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rstPeter Andreas Entschev2020-08-191-1/+1
| | | Co-authored-by: Juan Nunez-Iglesias <juan.nunez-iglesias@monash.edu>
* NEP: Simplify NEP-35 further with reviewer's suggestionsPeter Andreas Entschev2020-08-171-17/+39
|
* NEP: Adjust NEP-35 to make it more user-accessiblePeter Andreas Entschev2020-08-171-73/+190
|
* NEP: Updated NEP-35 with keyword-only instruction (#17009)Peter Andreas Entschev2020-08-071-6/+13
| | | | | | | | | | | * NEP: Updated NEP-35 with keyword-only instruction Following reviewer's suggestions during the implementation phase, the `like=` argument is now keyword-only, updating the proposal accordingly. * NEP: Changed date of NEP-35 latest update * NEP: Adjust keyword-only marker position in NEP-35
* DOC: Add a NEP link to all neps.Matthias Bussonnier2020-05-301-0/+2
| | | | | | | | | | | | | | | | | | | Usefull for crossreferencing and intersphinx Here is a snippet to update it if other neps are missing it: In [1]: neps = !ls nep-0* ...: for nep in neps: ...: number = nep[6:8] ...: with open(nep, 'r') as f: ...: data = f.read() ...: ...: if f'.. _NEP{number}:' in data: ...: continue ...: with open(nep, 'w') as f: ...: f.write('.. _NEP'+number+':\n') ...: f.write(data) ...:
* MAINT: change array creation dispatching with `__array_function__` to NEP-35Peter Andreas Entschev2019-11-041-0/+186