summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray
Commit message (Expand)AuthorAgeFilesLines
...
| * | Use the correct pointer type.M. Eric Irrgang2022-07-161-1/+1
| * | BUG: Distinguish exact vs. equivalent dtype for C type aliases.M. Eric Irrgang2022-07-161-2/+20
* | | TYP,BUG: Reduce argument validation in C-based `__class_getitem__` (#22212)Bas van Beek2022-09-072-2/+2
* | | Merge pull request #22152 from RinCat/mainRalf Gommers2022-08-311-0/+5
|\ \ \
| * | | BUG: Support using libunwind for backtrackRin Cat (鈴猫)2022-08-181-0/+5
* | | | rearrange headers to make npy_config.h only about configmattip2022-08-211-0/+4
|/ / /
* | | Merge pull request #22004 from seberg/ragged-dep-finalizeMatti Picus2022-07-181-89/+3
|\ \ \
| * | | DEP: Finalize ragged array creation deprecationSebastian Berg2022-07-171-89/+3
* | | | BUG: Avoid errors on NULL during deepcopy (#21996)Jon Cusick2022-07-171-10/+25
|/ / /
* | | ENH,MAINT: Add overflow handling for negative integers scalar multiplication ...Meekail Zain2022-07-179-19/+19
|/ /
* | BUG: Fix experimental dtype slot numbersSebastian Berg2022-07-131-2/+2
* | BUG: Fix subarray to object cast ownership detailsSebastian Berg2022-07-052-1/+11
* | Fix datetime_to_timedelta_resolve_descriptors signatureHood Chatham2022-06-301-1/+2
* | ENH,MAINT: Improve and simplify scalar floating point warningsSebastian Berg2022-06-281-11/+1
* | Merge pull request #21626 from seberg/weak-scalarsCharles Harris2022-06-266-122/+445
|\ \
| * | MAINT: Fixup bad rebaseSebastian Berg2022-06-151-4/+1
| * | STY: Minor tweaks/rewordingSebastian Berg2022-06-151-1/+1
| * | REV: Revert some minor style changes that smuggled their way inSebastian Berg2022-06-151-2/+2
| * | MAINT: Put array tagging into a static inline functionSebastian Berg2022-06-152-13/+58
| * | REV: Revert casting part of the old changesSebastian Berg2022-06-152-5/+6
| * | BUG: Fix broken weak promotion (including legacy ones) and make it more robustSebastian Berg2022-06-151-1/+25
| * | ENH: Try to be more forgiving in abstract dtype promotionSebastian Berg2022-06-151-3/+44
| * | API: Add leading underscore to `no_nep50_warning` and `get/set_promotion_state`Sebastian Berg2022-06-153-11/+11
| * | TODO: Add a todo note ;)Sebastian Berg2022-06-151-0/+1
| * | API: Fix legacy promotion option and expose as env variableSebastian Berg2022-06-152-5/+8
| * | MAINT: Remove incorrect check from concat and improve warningSebastian Berg2022-06-151-6/+4
| * | FIXUP set_promotion_stateSebastian Berg2022-06-151-3/+3
| * | API: Expose `get_promotion_state` and `set_promotion_state`Sebastian Berg2022-06-153-0/+55
| * | WIP: Add warning context manager and fix min_scalar for new promotionSebastian Berg2022-06-152-4/+63
| * | WIP: Restore dual behaviourSebastian Berg2022-06-152-28/+151
| * | WIP: Implement weak scalar logicSebastian Berg2022-06-155-169/+145
* | | Merge pull request #21817 from seberg/always-fillCharles Harris2022-06-233-6/+22
|\ \ \
| * | | TST: Add NULL checks to generic object ufunc loops and getitemSebastian Berg2022-06-211-0/+2
| * | | ENH: Always fill object fields with None rather than NULLSebastian Berg2022-06-212-6/+20
| |/ /
* | | BUG: Fix comparison for empty structured arrays (#21796)Srimukh Sripada2022-06-191-1/+9
* | | BUG: lib: A loadtxt error message had two values reversed.warren2022-06-181-5/+5
* | | MAINT: Add a check of the return value of PyMem_Calloc().warren2022-06-151-0/+4
|/ /
* | BUG: Decref `loadtxt` converters when doneSebastian Berg2022-06-141-2/+12
* | BUG: Fix DECREF when `__array_priority__` is None (or similar)Sebastian Berg2022-06-141-1/+1
* | BUG: Do not skip value-based promotion path for large Python integersSebastian Berg2022-06-141-1/+5
* | BUG: Avoid `NpyIter_EnableExternalLoop` as it resets the bufferSebastian Berg2022-06-131-3/+5
* | BUG: Add volatile to float -> datetime casts to work around compiler deficien...Sebastian Berg2022-06-131-4/+12
* | BUG: Fix needs_api for avanced assignments without subspace and remove unnece...Sebastian Berg2022-06-132-5/+5
* | BUG: Fix invalid access due to `iter` already being cleaned upSebastian Berg2022-06-131-2/+2
* | ENH: Add floating point error handling to advanced indexingSebastian Berg2022-06-133-71/+127
* | fixupsSebastian Berg2022-06-131-4/+1
* | WIP: Threads things into nditer for ufuncs and advanced indexingSebastian Berg2022-06-135-47/+86
* | ENH: Add overflow check to float setitemSebastian Berg2022-06-131-3/+48
* | BUG: Avoid FPE for float NaN to datetime/timedelta castsSebastian Berg2022-06-131-4/+14
* | ENH: Check floating point error flags for all castsSebastian Berg2022-06-1311-96/+294