summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/descriptor.c
Commit message (Expand)AuthorAgeFilesLines
* BUG: Fix reference counting error in arraydescr_newNathan Goldbaum2023-03-021-1/+0
* DOC: Fix and expand docs based on Nathan's reviewSebastian Berg2023-02-031-0/+21
* MAINT: And fix final cast warning for missing DTypeMeta cast.Sebastian Berg2023-02-031-1/+1
* ENH: Create new DType class aware converters for `dtype=`Sebastian Berg2023-02-031-0/+114
* MAINT: Remove the python <3.9 guards for `__class_getitem__`BvB932023-02-021-12/+2
* MAINT: remove unnecessary forward declaration of _convert_from_anyNathan Goldbaum2022-12-141-3/+0
* Cleanup: Fix designator order not matching declaration orderjuztamau52022-11-071-2/+2
* ENH,MAINT: Add overflow handling for negative integers scalar multiplication ...Meekail Zain2022-07-171-1/+1
* MAINT,BUG: Fix "use after free" in error message creationSebastian Berg2022-05-231-2/+4
* API: Fix `np.result_type(structured_dtype)` to "canonicalize" (#19346)Sebastian Berg2022-02-221-12/+0
* MAINT: Further small return value validation fixesSebastian Berg2022-02-031-3/+4
* ENH: review return values for PyArray_DescrNew (#20960)Matti Picus2022-02-021-7/+23
* BUG: Fix failure to create aligned, empty structured dtypeSebastian Berg2021-11-121-1/+1
* BUG: Fix requirement that user DTypes had to be heaptypesSebastian Berg2021-11-041-3/+6
* ENH: Create an experimental export of the new DType API (#19919)Sebastian Berg2021-10-181-0/+27
* MAINT: Make `__class_getitem__` available to all python version and perform b...Bas van Beek2021-09-161-4/+25
* ENH: Add `dtype.__class_getitem__`Bas van Beek2021-09-151-5/+12
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-2/+2
* MAIN: Minor include rationalization.Charles Harris2021-09-031-1/+1
* DEP: Remove deprecated numeric style dtype strings (#19539)NectDz2021-08-101-16/+0
* MAINT: Refactor DType slots into an opaque, allocated structSebastian Berg2021-07-291-4/+3
* BUG: Fix getter and setter signaturesJoe Marshall2021-06-301-17/+18
* BUG: Return NotImplemented for unrecognized dtypesGanesh Kathiresan2021-06-151-14/+1
* BUG: Remove TypeError on invalid dtypes comparisonGanesh Kathiresan2021-06-121-1/+16
* DEP: Deprecate `data_type.dtype` if attribute is not already a dtype (#13578)Sebastian Berg2021-01-061-0/+14
* BUG: Fixed crash on self-referential dtypes (#17536)Ganesh Kathiresan2020-10-181-3/+24
* MAINT: Replace PyUString_ConcatAndDel in descriptor.c.Charles Harris2020-09-301-5/+4
* MAINT: Replace append_metastr_to_string in descriptor.c.Charles Harris2020-09-291-3/+11
* MAINT: Replace a couple of missed npy_3kcompat macrosCharles Harris2020-09-121-2/+2
* MAINT: Replace PyBaseString_Check by PyUnicode_CheckCharles Harris2020-09-121-6/+6
* MAINT: Replace PyUString_Check by PyUnicode_Check.Charles Harris2020-09-111-3/+3
* Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-9/+9
|\
| * MAINT: Replace PyUString_* by PyUnicode_* equivalents.Charles Harris2020-08-231-9/+9
* | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-20/+20
|/
* BUG: Do not inherit flags from the structured part of a union dtypeSebastian Berg2020-07-121-1/+11
* Replace AdaptFlexibleDType with object and delete some datetime thing relatedSebastian Berg2020-07-081-2/+3
* Merge pull request #16642 from eric-wieser/fix-unicode-sizeMatti Picus2020-06-201-2/+2
|\
| * MAINT: Replace `PyUString_GET_SIZE` with `PyUnicode_GetLength`.Eric Wieser2020-06-201-2/+2
* | DEP: Remove deprecated numeric types and deprecate remaining (#16554)Sebastian Berg2020-06-101-3/+3
|/
* Merge pull request #16389 from seberg/hardcode-scalar-buffersMatti Picus2020-06-041-1/+0
|\
| * ENH: Hardcode buffer handling for simple scalarsSebastian Berg2020-05-311-1/+0
* | small fixups/name changesSebastian Berg2020-03-181-2/+4
* | Use "parametric" instead of "flexible" and add tests for attributesSebastian Berg2020-03-181-1/+1
* | STY: Just small indentation fixupSebastian Berg2020-03-181-17/+18
* | Possible initialization safety fixups and fix API hash.Sebastian Berg2020-03-181-0/+1
* | API: Create Preliminary DTypeMeta class and np.dtype subclassesSebastian Berg2020-03-181-5/+22
|/
* Update numpy/core/src/multiarray/descriptor.cSebastian Berg2020-03-041-1/+1
* Fixup: Do not deprecate generic python typesSebastian Berg2020-02-071-7/+7
* DEP: Do not allow "abstract" dtype conversion/creationSebastian Berg2020-02-061-0/+17
* Merge pull request #15521 from eric-wieser/tidy-descr-compareMatti Picus2020-02-061-56/+25
|\