Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | DOC: Array API : Directory restructure and code cleanup (#14010) | Kriti Singh | 2019-07-22 | 1 | -3678/+0 |
| | | | | | | * Minor improvements in Array API docs * Directory restruture | ||||
* | Merge pull request #13892 from kritisingh1/refactor-3 | Matti Picus | 2019-07-05 | 1 | -59/+63 |
|\ | | | | | DOC : Refactor Array API documentation -- Array Structure and Data Access | ||||
| * | DOC: Refactor Array API documentation -- include missing references and cleanup | kritisingh1 | 2019-07-05 | 1 | -55/+58 |
| | | |||||
| * | DOC: Refactor Array API documentation | kritisingh1 | 2019-06-30 | 1 | -4/+5 |
| | | |||||
* | | DOC: Add missing macros to C-API documentation (#13825) | Kriti Singh | 2019-06-30 | 1 | -3/+15 |
|/ | | | | | | | | * DOC: Adds missing macros in C-API documentation * Adds new PyUFunc_{KIND} macros Fixes #13775 | ||||
* | DOC: Mention PyArray_DIMS can be NULL | kritisingh1 | 2019-06-07 | 1 | -1/+1 |
| | |||||
* | ENH: Pass input strides and dimensions by pointer to const | Eric Wieser | 2019-06-01 | 1 | -16/+17 |
| | | | | | | | This makes it possible to call these functions with constant data. It also bakes the contract that the data passed via these pointers will not be changed into the function signatures. This is backwards compatible, because T* can always be passed to a function expecting T const*. | ||||
* | MAINT: Misc. typo fixes (#13664) | luzpaz | 2019-05-31 | 1 | -1/+1 |
| | | | | | | * DOC, MAINT: Misc. typo fixes Found via `codespell` | ||||
* | DOC: Mention PyArray_GetField steals a reference | kritisingh1 | 2019-05-31 | 1 | -5/+7 |
| | |||||
* | DOC: Remove duplicate documentation of the PyArray_SimpleNew family of functions | kritisingh1 | 2019-05-18 | 1 | -4/+15 |
| | |||||
* | DOC: Attempting to remove duplicate documentation. | Mircea Akos Bruma | 2019-03-21 | 1 | -1/+6 |
| | |||||
* | DOC: fix references in docs | mattip | 2019-03-10 | 1 | -18/+18 |
| | |||||
* | DOC: reduce warnings when building, reword, tweak doc building | mattip | 2019-02-28 | 1 | -7/+12 |
| | |||||
* | DOC: Update sorting documention. | Charles Harris | 2019-02-08 | 1 | -15/+22 |
| | | | | | | | | Update the sorting documentation to reflect the reality that 'mergesort' and 'stable' are aliases and may refer to any of several stable sorting algorithms depending on data type. [ci skip] | ||||
* | DOC: add docstring for timsort | wtli | 2019-01-21 | 1 | -3/+4 |
| | |||||
* | DOC: Document NPY_SORTKIND parameter in PyArray_Sort (#12606) | Piyush Jaipuriayar | 2019-01-15 | 1 | -3/+3 |
| | |||||
* | DOC: SimpleNewFromDescr cannot be given NULL for descr | Sebastian Berg | 2019-01-02 | 1 | -3/+3 |
| | |||||
* | Merge pull request #11916 from mattip/deprecate-set_numeric_ops | Charles Harris | 2018-11-09 | 1 | -0/+4 |
|\ | | | | | DEP: deprecate np.set_numeric_ops and friends | ||||
| * | DEP: deprecate np.set_numeric_ops and friends | mattip | 2018-10-21 | 1 | -0/+4 |
| | | |||||
* | | DOC: remove duplicate and outdated DOC | mattip | 2018-10-25 | 1 | -4/+0 |
| | | |||||
* | | DOC: remove old docs while adding bits of it where appropriate (part one) | mattip | 2018-10-25 | 1 | -5/+17 |
|/ | |||||
* | DOC: Clarify difference between PySequence_GETITEM, PyArray_GETITEM (#11914) | Yug Khanna | 2018-09-10 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | | * Issue #10966 fix * Issue #10966 fix Added documentation for return of standard python types on success for `PyArray_GETITEM` * Update c-api.array.rst * Update c-api.array.rst * Update c-api.array.rst * Update c-api.array.rst * Update c-api.array.rst * Update c-api.array.rst * Update c-api.array.rst | ||||
* | BUG: test, fix PyArray_DiscardWritebackIfCopy refcount issue and document | mattip | 2018-04-21 | 1 | -11/+15 |
| | |||||
* | DOC: added "steals a reference" to PyArray_FromAny | Mads R. B. Kristensen | 2018-01-14 | 1 | -3/+4 |
| | | | | PyArray_FromAny() steals a reference to the dtype argument | ||||
* | return values | mattip | 2017-12-06 | 1 | -2/+8 |
| | |||||
* | document new API function | mattip | 2017-12-06 | 1 | -3/+13 |
| | |||||
* | MAINT: Improve wording of documentation. | Charles Harris | 2017-11-11 | 1 | -1/+1 |
| | |||||
* | DOC: reword PyArray_DiscardWritebackIfCopy description | mattip | 2017-11-11 | 1 | -3/+4 |
| | |||||
* | DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with ↵ | Matti Picus | 2017-11-08 | 1 | -22/+70 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WRITEBACKIFCOPY (#9639) * ENH: add API to resolve UPDATEONCOPY outside dealloc, test and use * BUG: Fix usage of keyword "from" as argument name for "can_cast". Also removed inconsistency between the second argument name between documentation ("totype") and code ("to"). * UPDATEIFCOPY -> WRITEBACKIFCOPY, documentation * fixes for review * review2, fix new test * fix new test for using self.assert_deprecated * change deprecation logic as per review * new logic exposed places where PyArray_ResolveWritebackIfCopy not called * deprecate PyArray_XDECREF_ERR in favor of PyArray_DiscardWritebackIfCopy * code review changes * clean up merge cruft * fix from review * fixes from review * extend the release note | ||||
* | MAINT: Add a PyDataType_ISUNSIZED macro | Eric Wieser | 2017-11-03 | 1 | -0/+6 |
| | | | | This allows us to change how flexible types with no length are represented in future, to allow zero-size dtypes (#8970). | ||||
* | DOC: Some minor fixes regarding import_array | Michael Seifert | 2017-10-13 | 1 | -3/+3 |
| | | | | [skip ci] | ||||
* | Merge pull request #9392 from jaimefrio/updateifcopy_doc | Julian Taylor | 2017-07-11 | 1 | -2/+1 |
|\ | | | | | DOC: UPDATEIFCOPY raises an error if not an array. | ||||
| * | DOC: UPDATEIFCOPY raises an error if not an array. | Jaime Fernandez | 2017-07-09 | 1 | -2/+1 |
| | | |||||
* | | Merge pull request #9389 from jaimefrio/newfromdescr_doc_link | Julian Taylor | 2017-07-11 | 1 | -1/+1 |
|\ \ | | | | | | | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescr | ||||
| * | | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescr | Jaime Fernandez | 2017-07-08 | 1 | -1/+1 |
| |/ | |||||
* | | DOC: document how to free memory from PyArray_IntpConverter. | Jaime Fernandez | 2017-07-11 | 1 | -4/+4 |
|/ | |||||
* | DOC: Document the internal workings of PY_ARRAY_UNIQUE_SYMBOL | Jaime Fernandez | 2017-07-06 | 1 | -0/+18 |
| | |||||
* | DOC: Remove all references to bigndarray (#9205) | Konrad Kapp | 2017-06-02 | 1 | -7/+6 |
| | | | Fixes issue #9204 - bigndarray was removed long ago in 6fd31c330e6572963a03b71bcd479dbedd153ac8 | ||||
* | ENH: add np.positive ufunc and use it for ndarray.__pos__ | Stephan Hoyer | 2017-04-30 | 1 | -2/+2 |
| | | | | xref GH8932 | ||||
* | DOC: fix links to flags | Eric Wieser | 2017-04-05 | 1 | -7/+8 |
| | |||||
* | DOC: Add missing context argument | Eric Wieser | 2017-04-05 | 1 | -1/+1 |
| | |||||
* | DOC: Unwrap long signature lines | Michael Seifert | 2017-03-28 | 1 | -103/+228 |
| | | | | [skip ci] | ||||
* | DOC: Correct links to ndarray methods when currentmodule != numpy | Michael Seifert | 2017-03-27 | 1 | -42/+42 |
| | | | | [ci skip] | ||||
* | DOC: Corrected links for several __array_*__ functions | Michael Seifert | 2017-03-27 | 1 | -7/+7 |
| | |||||
* | DOC: Included correct destination for "&PyArray_Type" link. | Michael Seifert | 2017-03-27 | 1 | -1/+1 |
| | |||||
* | DOC: fixed link to `NPY_END_THREADS` | Michael Seifert | 2017-03-26 | 1 | -1/+1 |
| | |||||
* | DOC: Fix "PyObject *" links in narrative documentation | Michael Seifert | 2017-03-26 | 1 | -3/+3 |
| | |||||
* | DOC: Fix typos | Jakub Wilk | 2017-03-17 | 1 | -8/+8 |
| | |||||
* | DOC: fix return value for PyArray_Resize | A. Jesse Jiryu Davis | 2017-01-24 | 1 | -4/+4 |
| | |||||
* | DOC: Further fixes for PyArray_{Max, Min, Ptp} documentation. | Charles Harris | 2016-10-17 | 1 | -5/+9 |
| | | | | [ci skip] |