summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/nditer_pywrap.c
Commit message (Expand)AuthorAgeFilesLines
* Adding missing Py_DECREF call on iterSicheng Zeng2022-09-161-0/+1
* MAINT: Fix METH_NOARGS function signatures (#20368)Hood Chatham2021-11-181-9/+11
* STY: Small cleanups of includes in *.c files.Charles Harris2021-09-031-3/+4
* MAIN: Minor include rationalization.Charles Harris2021-09-031-2/+2
* Merge pull request #19396 from defoishugo/fix_numpy.nditer_leakMatti Picus2021-07-061-1/+1
|\
| * BUG: fix a numpy.npiter leak in npyiter_multi_index_setHugo Defois2021-07-021-1/+1
* | BUG: Fix getter and setter signaturesJoe Marshall2021-06-301-22/+49
|/
* BUG: use PyArray_IntTupleFromIntp which handles 'long long' correctlymattip2021-05-191-21/+4
* BUG: Changed METH_VARARGS to METH_NOARGSmrios2021-03-251-1/+1
* BUG: Add further tests and fix existing npyiter cleanup bugsSebastian Berg2021-02-031-2/+8
* Merge pull request #17149 from eric-wieser/cleanup-LongCharles Harris2020-08-241-15/+15
|\
| * Merge branch 'master' into cleanup-LongEric Wieser2020-08-241-1/+1
| |\
| * | MAINT: Replace PyInt macros with their PyLong replacementEric Wieser2020-08-241-15/+15
* | | Merge pull request #17152 from eric-wieser/avoid-NpySlice_GetIndicesExSebastian Berg2020-08-241-4/+4
|\ \ \ | |_|/ |/| |
| * | MAINT: Replace NpySlice_GetIndicesEx with PySlice_GetIndicesExEric Wieser2020-08-241-4/+4
| |/
* | MAINT: Replace PyUString_* by PyUnicode_* equivalents.Charles Harris2020-08-231-1/+1
|/
* MAINT: Add error return to all casting functionality and NpyIterSebastian Berg2020-08-111-0/+8
* MAINT: Replace npyiter_order_converter with PyArray_OrderConverterEric Wieser2020-04-271-46/+2
* BUG: Respect itershape=() in nditerEric Wieser2020-03-311-7/+4
* MAINT: Use `.identifier = val` to fill type structsSebastian Berg2020-02-011-47/+12
* MAINT: Cleanup most PY3K #ifdef guardsSeth Troisi2020-01-071-9/+0
* Fix other incorrect narrowing for format stringsEric Wieser2019-10-171-4/+4
* Merge pull request #14484 from seberg/unused-and-constMatti Picus2019-09-131-2/+3
|\
| * MAINT: Add NPY_UNUSED in many places where it was missingSebastian Berg2019-09-111-2/+3
* | BUG: Fix occurances where variables are cast to shorter int incorrectlySebastian Berg2019-09-111-1/+1
|/
* BUG: Refcount fixes (#13860)Sebastian Berg2019-07-031-1/+2
* BUG: Fix incorrect/missing reference cleanups found using valgrind (#12624)Sebastian Berg2019-01-031-0/+2
* fixes from reviewmattip2018-06-191-1/+1
* ENH: Remove NpyIter_Closemattip2018-06-181-77/+27
* BUG: Set ndarray.base before calling __array_finalize__Eric Wieser2018-06-071-14/+4
* MAINT/STY: Line wrap PyArray_NewFromDescr consistentlyEric Wieser2018-06-051-4/+4
* MAINT: Don't update the flags a second timeEric Wieser2018-06-031-4/+0
* fixes from reviewmattip2018-04-221-20/+16
* BUG: it.close() disallows access to iterator, fixes #10950mattip2018-04-221-15/+17
* fixes from reviewmattip2018-04-211-9/+0
* ENH: add nditer.close as per reviewmattip2018-04-201-6/+15
* ENH: add NpyIter_Close, nditer__{enter,exit}__mattip2018-04-201-1/+110
* DEP, ENH: deprecate UPDATEIFCOPY (except for nditer) and replace with WRITEBA...Matti Picus2017-11-081-1/+1
* MAINT: Use the error_converting macro where possibleEric Wieser2017-08-111-5/+6
* ENH: use caching memory allocator in more placesJulian Taylor2017-07-111-4/+5
* MAINT: Use the PyArray_FROM_OF macro moreEric Wieser2017-04-051-2/+2
* MAINT: Include the function name in all argument error messagesEric Wieser2017-03-281-2/+2
* Merge pull request #8043 from pv/ufunc-copy-overlapCharles Harris2017-02-161-0/+10
|\
| * ENH: core: rename NPY_ITER_OVERLAP_ALLOW_SAME to NPY_ITER_OVERLAP_ASSUME_ELEM...Pauli Virtanen2017-01-211-2/+2
| * ENH: core: change NPY_ITER_OVERLAP_NOT_SAME to NPY_ITER_OVERLAP_ALLOW_SAMEPauli Virtanen2017-01-191-0/+5
| * ENH: NpyIter: add a flag to handle read/write operand overlapPauli Virtanen2017-01-191-0/+5
* | MAINT: Remove __setslice__ and __getslice__Eric Wieser2017-02-091-2/+2
|/
* MAINT: Use PySlice_GetIndicesEx instead of custom reimplementationNathaniel J. Smith2016-02-091-14/+6
* MAINT: Fix some typos in a code string and commentsDongjoon Hyun2016-01-271-1/+1
* MAINT: Py3 changes PySlice_GetIndices' first argument's type to PyObject*Lars Buitinck2015-06-141-4/+10