summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* BUG: allow pickling generic datetimeAntoine Pitrou2017-05-312-2/+59
* BUG: have as_strided() keep custom dtypesAntoine Pitrou2017-05-242-4/+11
* BUG: set default type for empty index array to `numpy.intp` (#9142)Konrad Kapp2017-05-202-2/+12
* Merge pull request #9106 from mhvk/array_ufunc_reduce_out_tupleEric Wieser2017-05-187-66/+181
|\
| * DOC: update documentation allowing tuple of one in reduce, etc.Marten van Kerkwijk2017-05-174-15/+37
| * BUG: ufunc.reduce,accumulate,reduceat cannot deal with out tuple.Marten van Kerkwijk2017-05-124-22/+94
| * BUG: ensure axis=None gets passed on correctly to ufunc.reduce.Marten van Kerkwijk2017-05-122-34/+55
* | DEP: Deprecate incorrect behavior of expand_dims.Charles Harris2017-05-172-4/+40
* | Merge pull request #9112 from mhvk/array_ufunc_fast_scalar_powerMarten van Kerkwijk2017-05-173-33/+50
|\ \
| * | BUG: errors in fast_scalar_power are not propagated.Marten van Kerkwijk2017-05-123-33/+50
| |/
* | Merge pull request #8983 from ahaldane/fix0d_array2string_sEric Wieser2017-05-174-39/+72
|\ \
| * | ENH: str/repr fixed for 0d-arraysAllan Haldane2017-05-164-39/+72
* | | Merge pull request #9119 from SuperBo/masterCharles Harris2017-05-161-9/+7
|\ \ \ | |/ / |/| |
| * | BUG: Fix error handling on PyCapsule when initializing multiarraymoduleSuperBo2017-05-151-9/+7
* | | Merge pull request #9110 from juliantaylor/abs-no-elideCharles Harris2017-05-153-73/+85
|\ \ \
| * | | MAINT: use PyArray_ISNUMBER to decide whether to elideJulian Taylor2017-05-151-2/+2
| * | | TST: move elision tests to their own class and add some moreJulian Taylor2017-05-121-73/+82
| * | | BUG: only elide basic dtypes in unary opsJulian Taylor2017-05-121-1/+1
| * | | BUG: do not elide complex abs()Julian Taylor2017-05-122-1/+4
* | | | Merge pull request #9113 from matthew-brett/delay-array2stringCharles Harris2017-05-151-16/+26
|\ \ \ \ | |_|/ / |/| | |
| * | | RF: remove main clauseMatthew Brett2017-05-151-10/+0
| * | | RF: delay calls of array repr in getlimitsMatthew Brett2017-05-151-6/+26
* | | | BUG: Fix reference count error of types when init multiarraymoduleSuperBo2017-05-141-8/+0
* | | | Merge pull request #9116 from eric-wieser/stack-docsCharles Harris2017-05-131-1/+1
|\ \ \ \
| * | | | DOC: link to stack from column_stackEric Wieser2017-05-131-1/+1
| |/ / /
* | | | BUG: Compilation crashes in MSVC when LIB or INCLUDE is not setDavid Hagen2017-05-131-5/+5
|/ / /
* | | Merge pull request #9099 from charris/forwardport-9097Charles Harris2017-05-111-1/+1
|\ \ \
| * | | TST: fix test_basic failure on WindowsChristoph Gohlke2017-05-111-1/+1
* | | | Merge pull request #9096 from MSeifert04/inplace_keywordparamEric Wieser2017-05-113-10/+13
|\ \ \ \ | |/ / / |/| | |
| * | | ENH: Allow inplace as keyword parameter for byteswapMichael Seifert2017-05-113-10/+13
* | | | Merge pull request #9083 from eric-wieser/fix-duplicate-order-errorahaldane2017-05-102-5/+14
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: Improve error message from sorting with duplicate keyEric Wieser2017-05-102-5/+14
* | | | Merge pull request #9092 from mhvk/array-ufunc-ref-count-bugCharles Harris2017-05-102-16/+23
|\ \ \ \
| * | | | BUG remove memory leak in array ufunc override.Marten van Kerkwijk2017-05-102-16/+23
* | | | | Merge pull request #9089 from shoyer/array-ufunc-error-messageCharles Harris2017-05-102-7/+8
|\ \ \ \ \ | |/ / / / |/| | / / | | |/ / | |/| |
| * | | MAINT: refine error message for __array_ufunc__ not implementedStephan Hoyer2017-05-102-7/+8
| | |/ | |/|
* | | MAINT: Update master branch for 1.14.0 development.Charles Harris2017-05-103-0/+4
|/ /
* | Merge pull request #9087 from eric-wieser/fix-ufunc-resolutionJulian Taylor2017-05-1010-122/+175
|\ \
| * | MAINT: fix intp formatting warningsJulian Taylor2017-05-101-23/+24
| * | MAINT: Remove avoidable warningsEric Wieser2017-05-103-5/+3
| * | MAINT: use if instead of loopEric Wieser2017-05-101-31/+21
| * | BUG: Fix inconsistent lookup of __array_ufunc__.Eric Wieser2017-05-105-43/+53
| * | MAINT: Fix warnings about int vs intpEric Wieser2017-05-101-9/+9
| * | MAINT: Distinguish "correct" special method lookups from incorrect onesEric Wieser2017-05-106-45/+99
| |/
* | Merge pull request #9050 from juliantaylor/fortranobj-pathCharles Harris2017-05-102-9/+50
|\ \
| * | BUG: distutils, add compatiblity python parallelizationJulian Taylor2017-05-041-3/+44
| * | BUG: distutils, place fortranobject files in subfolderJulian Taylor2017-05-041-6/+6
* | | Merge pull request #9070 from ahaldane/silence_join_byEric Wieser2017-05-102-6/+49
|\ \ \ | |_|/ |/| |
| * | BUG: Preserve field order in join_by, avoids FutureWarningAllan Haldane2017-05-092-6/+49
* | | Merge pull request #9077 from eric-wieser/object-recursionJulian Taylor2017-05-092-1/+33
|\ \ \