summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/getset.c
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Refactor internal array creation to also allow dtype preservationSebastian Berg2023-04-261-1/+1
* ENH: Refactor special zero-filling to be managed by the DTypeNathan Goldbaum2023-04-181-11/+8
* MAINT: Do not steal reference in zerofill on errorSebastian Berg2022-05-231-0/+1
* MAINT: Reduce allocation size of empty (0 size) arrays to 1 byte (#21477)Matti Picus2022-05-171-1/+5
* ENH: review return values for PyArray_DescrNew (#20960)Matti Picus2022-02-021-5/+8
* ENH: Let ndarray.__array_finalize__ be callable.Marten van Kerkwijk2022-01-081-13/+0
* ENH: Support for changing dtype in non-C-contiguous viewsJoseph R. Fox-Rabinovitz2022-01-051-24/+10
* Merge pull request #20594 from seberg/fixup-setstateMatti Picus2021-12-241-9/+1
|\
| * MAINT: Use `PyArray_NBYTES_ALLOCATED` for data settingSebastian Berg2021-12-151-9/+1
* | DEP: remove NPY_ARRAY_UPDATEIFCOPY, deprecated in 1.14 (#20589)Matti Picus2021-12-181-4/+2
* | BUG: Fix leaks found using pytest-leaksSebastian Berg2021-12-151-0/+1
|/
* ENH: Configurable allocator (#17582)Matti Picus2021-10-251-1/+17
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-2/+2
* MAIN: Minor include rationalization.Charles Harris2021-09-031-1/+1
* BUG: Fix getter and setter signaturesJoe Marshall2021-06-301-33/+33
* MAINT: Introduce `PyArray_PyIntFromIntp` to remove ifdef'sSebastian Berg2021-06-181-22/+2
* Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-3/+8
|\
| * Merge pull request #17112 from eric-wieser/tidy-capsuleMatti Picus2020-08-241-2/+7
| |\
| | * BUG: Handle errors from the PyCapsure APIEric Wieser2020-08-201-2/+7
| * | MAINT: Remove uses of PyString_FromString.Charles Harris2020-08-191-1/+1
| |/
* | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-7/+7
|/
* BUG: Set readonly flag in array interface instead of warning (gh-16350)Alexander Belopolsky2020-08-031-11/+8
* ENH: Hardcode buffer handling for simple scalarsSebastian Berg2020-05-311-2/+0
* BUG: Setting a 0d array's strides to themselves should be legalEric Wieser2020-03-311-3/+4
* BUG: Guarantee array is in valid state after memory error occurs in getset.c ...Mibu2872020-03-181-7/+13
* DOC: Do not complain about contiguity when mutating `ndarray.shape` (gh-10600)John Han2020-03-121-2/+2
* BUG: Add some missing C error handlingEric Wieser2020-01-151-6/+31
* MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-071-45/+1
* MAINT: move buffer.h -> npy_buffer.h to avoid conflictsmattip2019-11-041-1/+1
* MAINT: Add NPY_UNUSED in many places where it was missingSebastian Berg2019-09-111-1/+1
* MAINT: fix use of cache_dimmattip2019-06-061-1/+1
* BUG: fix null pointer passed as argument 2, which is declared to never be nullAlexander Shadchin2019-05-251-5/+11
* STY: simplify codecgohlke2019-01-251-6/+1
* BUG: Dealloc cached buffer info (#12249)Matti Picus2018-10-301-0/+3
* BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-071-7/+3
* MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-051-8/+8
* BUG: Remove errant flag meddling in .real and .imagEric Wieser2018-06-051-1/+0
* MAINT: Fix Python 3 deprecated C-API useCharles Harris2018-03-191-7/+43
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBA...Matti Picus2017-11-081-2/+4
* MAINT: Add a PyDataType_ISUNSIZED macroEric Wieser2017-11-031-5/+4
* BUG: Allow empty strings to be viewed as themselvesEric Wieser2017-10-011-15/+12
* MAINT: Move variables into deepest relevant scope, for clarityEric Wieser2017-07-311-5/+6
* MAINT/BUG: Improve error messages for dtype reassigment, fix missing DECREFEric Wieser2017-07-311-51/+64
* ENH: use caching memory allocator in more placesJulian Taylor2017-07-111-5/+6
* ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
* MAINT: Use the PyArray_FROM_O macro moreEric Wieser2017-04-051-2/+2
* DEP: Warn about assigning 'data' attribute of ndarraygfyoung2016-02-281-4/+8
* DEP: Deprecate changing shape of non-C-contiguous array via descr.Charles Harris2015-11-291-3/+17
* MAINT: Speedup field access by removing unneeded safety checks (3/3)Allan Haldane2015-10-181-10/+14
* ENH: core: add diophantine equation solver for deciding memory overlap problemsPauli Virtanen2015-08-291-0/+1