summaryrefslogtreecommitdiff
path: root/doc/source/reference/c-api.array.rst
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Array API : Directory restructure and code cleanup (#14010)Kriti Singh2019-07-221-3678/+0
| | | | | | * Minor improvements in Array API docs * Directory restruture
* Merge pull request #13892 from kritisingh1/refactor-3Matti Picus2019-07-051-59/+63
|\ | | | | DOC : Refactor Array API documentation -- Array Structure and Data Access
| * DOC: Refactor Array API documentation -- include missing references and cleanupkritisingh12019-07-051-55/+58
| |
| * DOC: Refactor Array API documentationkritisingh12019-06-301-4/+5
| |
* | DOC: Add missing macros to C-API documentation (#13825)Kriti Singh2019-06-301-3/+15
|/ | | | | | | | * DOC: Adds missing macros in C-API documentation * Adds new PyUFunc_{KIND} macros Fixes #13775
* DOC: Mention PyArray_DIMS can be NULLkritisingh12019-06-071-1/+1
|
* ENH: Pass input strides and dimensions by pointer to constEric Wieser2019-06-011-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)luzpaz2019-05-311-1/+1
| | | | | | * DOC, MAINT: Misc. typo fixes Found via `codespell`
* DOC: Mention PyArray_GetField steals a referencekritisingh12019-05-311-5/+7
|
* DOC: Remove duplicate documentation of the PyArray_SimpleNew family of functionskritisingh12019-05-181-4/+15
|
* DOC: Attempting to remove duplicate documentation.Mircea Akos Bruma2019-03-211-1/+6
|
* DOC: fix references in docsmattip2019-03-101-18/+18
|
* DOC: reduce warnings when building, reword, tweak doc buildingmattip2019-02-281-7/+12
|
* DOC: Update sorting documention.Charles Harris2019-02-081-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 timsortwtli2019-01-211-3/+4
|
* DOC: Document NPY_SORTKIND parameter in PyArray_Sort (#12606)Piyush Jaipuriayar2019-01-151-3/+3
|
* DOC: SimpleNewFromDescr cannot be given NULL for descrSebastian Berg2019-01-021-3/+3
|
* Merge pull request #11916 from mattip/deprecate-set_numeric_opsCharles Harris2018-11-091-0/+4
|\ | | | | DEP: deprecate np.set_numeric_ops and friends
| * DEP: deprecate np.set_numeric_ops and friendsmattip2018-10-211-0/+4
| |
* | DOC: remove duplicate and outdated DOCmattip2018-10-251-4/+0
| |
* | DOC: remove old docs while adding bits of it where appropriate (part one)mattip2018-10-251-5/+17
|/
* DOC: Clarify difference between PySequence_GETITEM, PyArray_GETITEM (#11914)Yug Khanna2018-09-101-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 documentmattip2018-04-211-11/+15
|
* DOC: added "steals a reference" to PyArray_FromAnyMads R. B. Kristensen2018-01-141-3/+4
| | | | PyArray_FromAny() steals a reference to the dtype argument
* return valuesmattip2017-12-061-2/+8
|
* document new API functionmattip2017-12-061-3/+13
|
* MAINT: Improve wording of documentation.Charles Harris2017-11-111-1/+1
|
* DOC: reword PyArray_DiscardWritebackIfCopy descriptionmattip2017-11-111-3/+4
|
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with ↵Matti Picus2017-11-081-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 macroEric Wieser2017-11-031-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_arrayMichael Seifert2017-10-131-3/+3
| | | | [skip ci]
* Merge pull request #9392 from jaimefrio/updateifcopy_docJulian Taylor2017-07-111-2/+1
|\ | | | | DOC: UPDATEIFCOPY raises an error if not an array.
| * DOC: UPDATEIFCOPY raises an error if not an array.Jaime Fernandez2017-07-091-2/+1
| |
* | Merge pull request #9389 from jaimefrio/newfromdescr_doc_linkJulian Taylor2017-07-111-1/+1
|\ \ | | | | | | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescr
| * | DOC: Fix reference, PyArray_DescrNew -> PyArray_NewFromDescrJaime Fernandez2017-07-081-1/+1
| |/
* | DOC: document how to free memory from PyArray_IntpConverter.Jaime Fernandez2017-07-111-4/+4
|/
* DOC: Document the internal workings of PY_ARRAY_UNIQUE_SYMBOLJaime Fernandez2017-07-061-0/+18
|
* DOC: Remove all references to bigndarray (#9205)Konrad Kapp2017-06-021-7/+6
| | | Fixes issue #9204 - bigndarray was removed long ago in 6fd31c330e6572963a03b71bcd479dbedd153ac8
* ENH: add np.positive ufunc and use it for ndarray.__pos__Stephan Hoyer2017-04-301-2/+2
| | | | xref GH8932
* DOC: fix links to flagsEric Wieser2017-04-051-7/+8
|
* DOC: Add missing context argumentEric Wieser2017-04-051-1/+1
|
* DOC: Unwrap long signature linesMichael Seifert2017-03-281-103/+228
| | | | [skip ci]
* DOC: Correct links to ndarray methods when currentmodule != numpyMichael Seifert2017-03-271-42/+42
| | | | [ci skip]
* DOC: Corrected links for several __array_*__ functionsMichael Seifert2017-03-271-7/+7
|
* DOC: Included correct destination for "&PyArray_Type" link.Michael Seifert2017-03-271-1/+1
|
* DOC: fixed link to `NPY_END_THREADS`Michael Seifert2017-03-261-1/+1
|
* DOC: Fix "PyObject *" links in narrative documentationMichael Seifert2017-03-261-3/+3
|
* DOC: Fix typosJakub Wilk2017-03-171-8/+8
|
* DOC: fix return value for PyArray_ResizeA. Jesse Jiryu Davis2017-01-241-4/+4
|
* DOC: Further fixes for PyArray_{Max, Min, Ptp} documentation.Charles Harris2016-10-171-5/+9
| | | | [ci skip]