summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* MAINT: addressed extraneous shape tuple checks in descriptor.cTyler Reddy2018-04-251-18/+12
* fixes from reviewmattip2018-04-221-20/+16
* BUG: it.close() disallows access to iterator, fixes #10950mattip2018-04-221-15/+17
* Merge pull request #9998 from mattip/nditer-as-context-managerAllan Haldane2018-04-219-62/+322
|\
| * fixes from reviewmattip2018-04-212-10/+1
| * ENH: add nditer.close as per reviewmattip2018-04-201-6/+15
| * ENH: add NpyIter_Close, nditer__{enter,exit}__mattip2018-04-209-62/+322
* | Merge pull request #10921 from mattip/percentile-graphCharles Harris2018-04-201-1/+2
|\ \
| * | DOC: clear up warnings, fix matplotlib plotmattip2018-04-171-1/+2
| |/
* | Merge pull request #10775 from mdboom/return-errors-from-initEric Wieser2018-04-192-20/+25
|\ \
| * | Return NULL from PyInit_* when exception is raisedMichael Droettboom2018-03-302-20/+25
* | | Fixes #663: fixed dtype alignment for array of structs in case of converting ...Ihor Melnyk2018-04-181-4/+14
| |/ |/|
* | Merge pull request #10665 from pv/accumulate-same-nocopyCharles Harris2018-04-121-3/+9
|\ \
| * | ENH: umath: don't make temporary copies for in-place accumulationPauli Virtanen2018-04-091-3/+9
* | | Merge pull request #10745 from eric-wieser/comparison-object-loopMarten van Kerkwijk2018-04-112-8/+23
|\ \ \ | |/ / |/| |
| * | ENH: Add object loops to the comparison ufuncsEric Wieser2018-04-082-8/+23
* | | Merge pull request #10796 from juliantaylor/inplace-overlapCharles Harris2018-04-091-4/+16
|\ \ \ | |/ / |/| |
| * | BUG: fix wrong inplace vectorization on overlapping argumentsJulian Taylor2018-03-251-4/+16
* | | Merge pull request #10763 from ahaldane/fix_float_repr_tp_print_overrideCharles Harris2018-04-051-0/+37
|\ \ \
| * | | BUG: floating types should override tp_printAllan Haldane2018-03-191-0/+37
* | | | Merge pull request #10814 from juliantaylor/improve-cpuidCharles Harris2018-04-052-0/+65
|\ \ \ \
| * | | | BUG: verify the OS supports avx instructionJulian Taylor2018-03-292-0/+65
| | |/ / | |/| |
* | | | Merge pull request #10832 from orestisf1993/issue-10810Stephan Hoyer2018-03-311-1/+1
|\ \ \ \
| * | | | ENH: datetime64: support AC dates starting with '+'Orestis Floros2018-03-311-1/+1
* | | | | Merge pull request #10786 from lakshayg/stablesortJulian Taylor2018-03-311-0/+4
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Remove NPY_STABLESORT enumLakshay Garg2018-03-292-3/+2
| * | | | add stablesort in np.sort and point to mergesortLakshay Garg2018-03-232-0/+5
* | | | | Merge pull request #10795 from eric-wieser/einsum-output-spacesMarten van Kerkwijk2018-03-261-10/+19
|\ \ \ \ \
| * | | | | BUG: Allow spaces in output string of einsumEric Wieser2018-03-251-10/+19
| | |/ / / | |/| | |
* | | | | Merge pull request #10798 from jaimefrio/einsum_mappingEric Wieser2018-03-261-4/+3
|\ \ \ \ \
| * | | | | BUG: Incorrect mapping of einsum axes.Jaime Fernandez2018-03-261-4/+3
| |/ / / /
* | | | | Merge pull request #10774 from mdboom/fix-sqrt-min-for-no-long-doubleAllan Haldane2018-03-251-0/+4
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | Fix SQRT_MIN for platforms with 8-byte long doubleMichael Droettboom2018-03-201-0/+4
| | |_|/ | |/| |
* | | | BUG: Provide correct format in Py_buffer for scalars (#10564)Jeff VanOss2018-03-243-46/+117
* | | | Merge pull request #10790 from charris/pytest-prepCharles Harris2018-03-245-24/+24
|\ \ \ \ | |_|/ / |/| | |
| * | | TST: Rename some compiled c test modulesCharles Harris2018-03-245-24/+24
| |/ /
* | | BUG: test, fix for missing flags['WRITEBACKIFCOPY'] keymattip2018-03-221-1/+1
|/ /
* | Merge pull request #10766 from eric-wieser/remove-dead-codeCharles Harris2018-03-191-49/+0
|\ \
| * | MAINT: Remove the unused scalarmath getters for fmod and sqrtEric Wieser2018-03-191-49/+0
* | | Merge pull request #10740 from charris/add-python-3.7-testsCharles Harris2018-03-198-23/+168
|\ \ \ | |/ / |/| |
| * | MAINT: Fix Python 3 deprecated C-API useCharles Harris2018-03-197-23/+164
| * | MAINT: Fix char* variable in arr_add_docstring for Python 3.7Charles Harris2018-03-151-0/+4
| |/
* | DOC: Fix typo in warning messagehvy2018-03-151-1/+1
|/
* Merge pull request #10716 from ahaldane/fix_dragon4_fractional_cutoffCharles Harris2018-03-101-5/+11
|\
| * BUG: dragon4 fractional output mode adds too many trailing zerosAllan Haldane2018-03-091-5/+11
* | Merge pull request #10689 from freakboy3742/iOS-compatCharles Harris2018-03-081-2/+2
|\ \
| * | BLD: Add configuration to allow cross platform builds for iOS.Russell Keith-Magee2018-03-041-2/+2
* | | MAINT: Hard tab and whitespace cleanup.Charles Harris2018-03-083-30/+30
| |/ |/|
* | ENH: Allow dtype field names to be unicode in Python2 (#10672)Chris Billington2018-03-081-2/+13
|/
* MAINT: Check operand sizes before doing anything with themMarten van Kerkwijk2018-02-271-17/+19