summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/shape.c
Commit message (Expand)AuthorAgeFilesLines
* MAINT: Refactor internal array creation to also allow dtype preservationSebastian Berg2023-04-261-1/+1
* MAINT: replace `NPY_INLINE` with `inline`Ralf Gommers2022-11-251-1/+1
* Fix conversion from bool to enumjuztamau52022-11-071-1/+1
* ENH,MAINT: Add overflow handling for negative integers scalar multiplication ...Meekail Zain2022-07-171-4/+4
* MAINT: Remove the RELAXED_STRIDES_CHECKING env variableSebastian Berg2022-02-111-5/+2
* ENH: Configurable allocator (#17582)Matti Picus2021-10-251-2/+10
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-2/+3
* MAIN: Minor include rationalization.Charles Harris2021-09-031-1/+1
* MAINT: Remove the build_shape_string function.Charles Harris2020-10-011-45/+0
* MAINT: Replace PyUString_ConcatAndDel in shape.c.Charles Harris2020-09-301-21/+15
* MAINT: Remove NPY_COPY_PYOBJECT_PTREric Wieser2020-08-261-1/+1
* Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-6/+6
|\
| * MAINT: Replace PyUString_* by PyUnicode_* equivalents.Charles Harris2020-08-231-6/+6
* | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-1/+1
|/
* MAINT: Fix internal misuses of `NPY_TITLE_KEY`Eric Wieser2020-02-051-1/+1
* MAINT: Improve const-correctness of shapes and stridesEric Wieser2020-01-061-1/+1
* Merge pull request #14484 from seberg/unused-and-constMatti Picus2019-09-131-5/+5
|\
| * MAINT: Add const qualifier in some places where clang suggests itSebastian Berg2019-09-111-4/+4
| * MAINT: Add NPY_UNUSED in many places where it was missingSebastian Berg2019-09-111-1/+1
* | BUG: Fix occurances where variables are cast to shorter int incorrectlySebastian Berg2019-09-111-3/+3
|/
* MAINT: Clarify the error message for resize failurekngwyu2018-10-141-5/+12
* BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-071-36/+6
* MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-051-20/+13
* Merge pull request #11247 from eric-wieser/simplify-incref-handlingMatti Picus2018-06-051-8/+4
|\
| * BUG: Prevent memory leak if PyArray_NewCopy failsEric Wieser2018-06-051-1/+1
| * MAINT: Remove out-of-band reference count in PyArray_NewshapeEric Wieser2018-06-041-8/+4
* | MAINT: Don't update the flags a second timeEric Wieser2018-06-041-5/+0
|/
* DOC: Fix typo in warning messagehvy2018-03-151-1/+1
* MAINT: Use PyUString_InternFromString to avoid constructing the strings on ea...Eric Wieser2018-02-041-2/+3
* MAINT: Use AxisError in swapaxesEric Wieser2018-02-031-12/+2
* MAINT: Fix miscellaneous sign-compare warnings.Charles Harris2018-01-231-1/+3
* BUG: Allow array with 0 dims to be resizedEric Wieser2017-10-011-0/+1
* BUG: Prevent ValueError when resizing V0 arraysEric Wieser2017-10-011-25/+18
* ENH: use caching memory allocator in more placesJulian Taylor2017-07-111-1/+2
* BUG: handle resize to 0d arrayJulian Taylor2017-06-031-18/+25
* ENH: Spelling fixesVille Skyttä2017-05-091-1/+1
* BUG: Use int for axes, not intpEric Wieser2017-02-231-4/+4
* MAINT: Use the same error message for most C code handling negative axesEric Wieser2017-02-201-6/+1
* STY: add spaces and endif documentationMatti Picus2016-10-011-2/+2
* ENH: a.resize(.., refcheck=True) is almost unusable on PyPyMatti Picus2016-09-171-2/+10
* BUG: Fix indexing a nested structured type that contains a zero-width structu...Erik M. Bray2016-05-311-2/+2
* Merge pull request #7463 from seberg/array-too-largeJaime2016-03-261-3/+3
|\
| * MAINT: Rename size and sd to nbytes in NewFromDescr_intSebastian Berg2016-03-261-3/+3
* | BUG: int overflow in reshape, fixes #7455, fixes #7293Jaime Fernandez2016-03-251-56/+37
|/
* DOC: Fix more typos in docs and comments.Dongjoon Hyun2016-02-251-1/+1
* REV: Make sure ravel returns a contiguous arraySebastian Berg2015-09-271-20/+16
* MANT: Use Py_RETURN_NONE whenever Py_None is returnedJaime Fernandez2015-04-241-2/+1
* MAINT: Fix possible unitialized variable in shape.c.Charles Harris2015-02-141-1/+1
* ENH: Make swapaxes always return a viewjaimefrio2015-01-201-28/+12
* ENH: Allow ravel to reshape in place when possibleSebastian Berg2014-09-141-16/+27