summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray
Commit message (Expand)AuthorAgeFilesLines
* BUG: Fix small issues found with pytest-leaksSebastian Berg2021-03-233-13/+22
* BUG: Fix small valgrind-found issues (#18651)Sebastian Berg2021-03-213-0/+4
* Merge pull request #18487 from charris/backport-18478Charles Harris2021-02-241-1/+1
|\
| * MAINT: verify pointer against NULL before using itChristoph Gohlke2021-02-241-1/+1
* | Merge pull request #18486 from charris/backport-18477Charles Harris2021-02-241-1/+1
|\ \
| * | MAINT: remove nonsensical comparison of pointer < 0Christoph Gohlke2021-02-241-1/+1
| |/
* | MAINT: cast Py_ssize_t to intChristoph Gohlke2021-02-241-1/+1
* | MAINT: Remove suspicious type castingChristoph Gohlke2021-02-241-1/+1
|/
* BUG: Segfault in nditer buffer dealloc for Object arraysAllan Haldane2021-02-222-2/+6
* Merge pull request #18462 from charris/backport-15392Charles Harris2021-02-211-81/+108
|\
| * BUG: Remove temporary change of descr/flags in VOID functionsSebastian Berg2021-02-211-81/+108
* | BUG: Fix tiny memory leaks when `like=` overrides are usedSebastian Berg2021-02-211-0/+7
|/
* Update numpy/core/src/multiarray/mapping.cSebastian Berg2021-01-291-2/+0
* BUG: Ensure too many advanced indices raises an exceptionSebastian Berg2021-01-291-1/+15
* BUG: Keep ignoring most errors during array-protocol lookupSebastian Berg2021-01-201-2/+17
* BUG: Promotion between strings and objects was assymetricSebastian Berg2021-01-111-2/+3
* BUG: Fix promotion of half and stringSebastian Berg2021-01-061-4/+6
* BUG: Fix concatenation when the output is "S" or "U"Sebastian Berg2020-12-233-39/+89
* DEP: Futurewarn on requiring __len__ on array-likesSebastian Berg2020-12-181-0/+47
* BUG: Ignore fewer errors during array-coercionSebastian Berg2020-12-172-4/+18
* STY: fix C coding stylemattip2020-12-021-1/+1
* BLD: adapt to pypy37mattip2020-12-021-1/+1
* BUG: Fix readonly related scalar buffer exportsSebastian Berg2020-11-291-1/+13
* TST: Do not leak reference/object in error-test pathSebastian Berg2020-11-291-2/+3
* BUG: Fix incorrect brackets leading to error leak in mapping.cSebastian Berg2020-11-291-1/+2
* ENH,API: Store exported buffer info on the array (#16938)Sebastian Berg2020-11-267-206/+220
* BUG: Fix incorrect function prototypes.Charles Harris2020-11-263-14/+14
* Merge pull request #17401 from seberg/restructure-castingCharles Harris2020-11-2514-698/+3664
|\
| * Last touch-ups (test and tiny fixes)Sebastian Berg2020-11-241-12/+11
| * Address Matti's comments from yesterdaySebastian Berg2020-11-246-180/+191
| * MAINT: Rewrite can-cast logic in terms of NEP 42Sebastian Berg2020-11-2414-697/+3653
* | Merge pull request #17833 from seberg/void-pickleCharles Harris2020-11-242-14/+30
|\ \ | |/ |/|
| * DEP: Give a deprecation warning when unpickling an object scalarSebastian Berg2020-11-241-0/+8
| * BUG: Fix pickling of scalars with NPY_LISTPICKLESebastian Berg2020-11-192-14/+22
* | BUG: Fix subarray dtype used with too large count in fromfileSebastian Berg2020-11-231-9/+13
* | BUG: Fix incorrectly passed size in masked processingSebastian Berg2020-11-221-1/+1
* | MAINT: Make like= strict in array_implement_array_functionPeter Andreas Entschev2020-11-201-3/+12
* | STY: Move exception to same line of PyErr_FormatPeter Andreas Entschev2020-11-191-2/+1
* | MAINT: Use get_array_function with like=Peter Andreas Entschev2020-11-171-1/+1
* | MAINT: Change like= exception to TypeErrorPeter Andreas Entschev2020-11-171-1/+1
* | MAINT: Make like= in np.array() strictPeter Andreas Entschev2020-11-161-3/+8
* | Merge pull request #17645 from lormuc/timedelta-nat-formatCharles Harris2020-11-141-1/+2
|\ \ | |/ |/|
| * BUG: fix np.timedelta64('nat').__format__ throwing an exceptionVeniamin Petrenko2020-10-271-1/+2
* | BUG: Fix buffer export dtype referencesSebastian Berg2020-11-111-4/+6
* | BUG: Raise promotion error if a DType was provided in array coercion (gh-17706)Sebastian Berg2020-11-092-9/+25
* | Merge pull request #17598 from simon-graham/array_tofile_cleanupMatti Picus2020-11-091-18/+35
|\ \
| * | MAINT: Refactored array_tofile to use a helper function.Simon Graham2020-10-291-22/+27
| * | BUG: Made array_tofile exception safe.Simon Graham2020-10-291-13/+17
| * | BUG: array_tofile now always closes the original file handle.Simon Graham2020-10-291-18/+19
| * | Update numpy/core/src/multiarray/methods.cSimon Graham2020-10-291-4/+12