summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/common.c
Commit message (Expand)AuthorAgeFilesLines
* DEP: deprecate scalar conversions for arrays with ndim > 0 (#10615)Nico Schlömer2023-04-201-0/+29
* ENH: Refactor special zero-filling to be managed by the DTypeNathan Goldbaum2023-04-181-18/+0
* MAINT: Do not steal reference in zerofill on errorSebastian Berg2022-05-231-1/+0
* MAINT: Remove now unused indx2ptr helper (and some other declarations)Sebastian Berg2022-02-031-17/+0
* MAINT, DOC: discard repeated wordsDimitri Papadopoulos2022-01-131-2/+2
* Prohibited calling ``__array__`` method in never copy modeGagandeep Singh2021-11-101-1/+1
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-2/+3
* MAINT: Rename `NPY_DT_call_*` to `NPY_DT_CALL_*`Sebastian Berg2021-08-021-1/+1
* MAINT: Refactor DType slots into an opaque, allocated structSebastian Berg2021-07-291-2/+2
* MAINT: Replace PyUString_ConcatAndDel in common.c.Charles Harris2020-09-301-11/+10
* MAINT: Remove redundant headers (#17163)Chunlin2020-09-011-1/+0
* MAINT: remove _array_typedescr_fromstr and adjust its remaining callerEric Wieser2020-08-261-20/+0
* Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-9/+9
|\
| * MAINT: Replace PyUString_* by PyUnicode_* equivalents.Charles Harris2020-08-231-8/+8
| * MAINT: Remove uses of PyString_FromString.Charles Harris2020-08-191-1/+1
* | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-5/+2
|/
* MAINT: Try to clean up headers a bitSebastian Berg2020-07-081-0/+1
* MAINT: Delete legacy dtype discoverySebastian Berg2020-07-081-381/+18
* Use new mechanism for np.asarray, and hopefully get void right, harSebastian Berg2020-07-081-27/+2
* WIP: Some cleanup/changes?Sebastian Berg2020-07-081-1/+1
* ENH: Hardcode buffer handling for simple scalarsSebastian Berg2020-05-311-10/+0
* BUG, MAINT: Stop using the error-prone deprecated Py_UNICODE apisEric Wieser2020-02-081-12/+20
* MAINT: Extract repeated code to a helper functionEric Wieser2020-02-081-58/+58
* NEP: issue deprecation warning when creating ragged array (NEP 34)Matti Picus2020-01-211-2/+0
* BUG: Use PyDict_GetItemWithError() instead of PyDict_GetItem()Eric Wieser2020-01-141-1/+4
* MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-071-50/+0
* MAINT: Cleaning up more PY_VERSION_HEXSeth Troisi2020-01-061-8/+0
* MAINT: Improve const-correctness of string argumentsEric Wieser2020-01-061-1/+1
* MAINT: Improve const-correctness of shapes and stridesEric Wieser2020-01-061-1/+1
* MAINT: move buffer.h -> npy_buffer.h to avoid conflictsmattip2019-11-041-1/+1
* BUG: clear only attribute errors in get_attr_string.h::maybe_get_attr (#14745)keewis2019-10-301-0/+10
* BUG: Refcount fixes (#13860)Sebastian Berg2019-07-031-1/+4
* ENH: Deprecate writeable broadcast_array (#12609)Matti Picus2019-06-281-1/+11
* BUG,DEP: Fix writeable flag setting for arrays without baseSebastian Berg2019-05-161-11/+26
* BUG: Fix null pointer dereference in PyArray_DTypeFromObjectHelperJakub Wilk2019-04-061-1/+1
* BUG: Fix incorrect/missing reference cleanups found using valgrind (#12624)Sebastian Berg2019-01-031-5/+5
* DOC: rearrange comment sequence from reviewmattip2018-12-131-1/+2
* MAINT: comment, fix from reviewmattip2018-12-101-0/+5
* BUG: disallow setting flag to writeable if isinstance(a.base, (str, bytes))mattip2018-11-261-15/+0
* BUG: Dealloc cached buffer info (#12249)Matti Picus2018-10-301-0/+10
* ENH: Implement methods for uint-alignmentAllan Haldane2018-09-271-44/+0
* MAINT: refactor duplicate code into 'common.c'mattip2018-06-291-0/+100
* MAINT: push back multifield copy->view changes to 1.16Allan Haldane2018-06-111-1/+1
* MAINT: Fix Python 3 deprecated C-API useCharles Harris2018-03-191-1/+15
* MAINT: Fix miscellaneous sign-compare warnings.Charles Harris2018-01-231-1/+1
* MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser2017-05-101-3/+3
* MAINT: Put PyArray_GetAttrString_SuppressException in get_attr_string.hNathaniel J. Smith2017-04-271-55/+2
* BUG: non-integers can end up in dtype offsetsAllan Haldane2016-09-221-0/+1
* BUG: incorrect type for objects whose __len__ failsAllan Haldane2016-03-091-0/+3
* BUG: Segfault for classes with deceptive __len__Allan Haldane2016-02-181-12/+8