summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #6987 from jakirkham/test_dot_inner_type_failuresCharles Harris2016-01-153-2/+17
|\
| * DOC: Explain the new exception behavior of `np.dot` when its types cannot be ...John Kirkham2016-01-151-0/+14
| * MAINT: Ensure `inner` is raising a ValueError just as `dot` does in the same ...John Kirkham2016-01-152-2/+3
* | Merge pull request #7000 from gfyoung/ndarray_arg_enforceStephan Hoyer2016-01-155-6/+33
|\ \
| * | DOC, MAINT: Enforce np.ndarray arg for np.put and np.placegfyoung2016-01-145-6/+33
* | | Merge pull request #7016 from andyfaff/iscloseCharles Harris2016-01-152-2/+18
|\ \ \ | |_|/ |/| |
| * | MAINT: ensureisclose returns scalar when called with two scalarsAndrew Nelson2016-01-152-2/+18
|/ /
* | Merge pull request #6912 from gfyoung/asarray_orderCharles Harris2016-01-143-16/+50
|\ \
| * | BUG: Enforce order param for MaskedArray constructiongfyoung2016-01-153-16/+50
* | | Merge pull request #7015 from njsmith/fix-1.10-messagesCharles Harris2016-01-143-6/+6
|\ \ \ | |/ / |/| |
| * | DOC: Clean up/fix several references to the "future" 1.10 releaseNathaniel J. Smith2016-01-143-6/+6
* | | Merge pull request #7001 from shoyer/NaT-comparisonCharles Harris2016-01-148-24/+135
|\ \ \ | |_|/ |/| |
| * | TST, ENH: make all comparisons with NaT falseStephan Hoyer2016-01-148-24/+135
|/ /
* | Merge pull request #6465 from shoyer/datetime64-NaT-castingCharles Harris2016-01-142-8/+35
|\ \
| * | BUG: fix casting rules for generic datetime64/timedelta64 unitsStephan Hoyer2015-10-132-8/+35
* | | Merge pull request #7008 from TwistedHardware/masterJaime2016-01-141-4/+4
|\ \ \
| * | | Fix number sequenceAbdullah Alrasheed2016-01-141-4/+4
|/ / /
* | | Merge pull request #7005 from juliantaylor/get_path_warnRalf Gommers2016-01-131-1/+1
|\ \ \
| * | | BUG: skip invalid path distutils warning for empty stringsJulian Taylor2016-01-131-1/+1
|/ / /
* | | Merge pull request #6728 from gerritholl/structured_multidim_masked_array_fil...ahaldane2016-01-122-0/+24
|\ \ \
| * | | BUG/TST: Fix for #6723 including test: force fill_value.ndim==0Gerrit Holl2015-12-072-0/+24
* | | | Merge pull request #6975 from charris/add-cacosh-to-glibc-blacklistCharles Harris2016-01-121-0/+6
|\ \ \ \
| * | | | BUG: Add more complex trig functions to glibc < 2.16 blacklist.Charles Harris2016-01-081-0/+6
* | | | | Merge pull request #6969 from charris/bench-randintCharles Harris2016-01-121-0/+38
|\ \ \ \ \
| * | | | | ENH: Add benchmark tests for numpy.random.randint.Charles Harris2016-01-071-0/+38
| |/ / / /
* | | | | Merge pull request #6968 from jakirkham/optimize_innerproductCharles Harris2016-01-125-259/+72
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | MAINT: Refactor `PyArray_InnerProduct` so that it just performs a transpose a...John Kirkham2016-01-113-135/+34
| * | | | MAINT: Refactor `cblas_innerproduct` to use `cblas_matrixproduct`.John Kirkham2016-01-111-129/+9
| * | | | BUG: Clear error before constructing error message using calls to `PyObject_R...John Kirkham2016-01-111-4/+24
| * | | | TST: Ensure `inner` fails correctly if array types cannot be coerced into a c...John Kirkham2016-01-111-0/+7
| * | | | TST: Ensure `dot` fails correctly if array types cannot be coerced into a com...John Kirkham2016-01-111-0/+7
|/ / / /
* | | | Merge pull request #6994 from juliantaylor/signbitCharles Harris2016-01-111-4/+4
|\ \ \ \
| * | | | BUG: make result of isfinite/isinf/signbit a booleanJulian Taylor2016-01-111-4/+4
|/ / / /
* | | | Merge pull request #6931 from gfyoung/random_integers_deprecateCharles Harris2016-01-103-3/+39
|\ \ \ \
| * | | | DEP: Deprecate random_integersgfyoung2016-01-103-3/+39
|/ / / /
* | | | Merge pull request #6989 from jakirkham/sty_indent_doc_typos_floatintCharles Harris2016-01-101-26/+25
|\ \ \ \
| * | | | DOC: Fix typos.John Kirkham2016-01-101-2/+2
| * | | | STY: Fix indentation in example from docs.John Kirkham2016-01-101-24/+23
* | | | | Merge pull request #6980 from juliantaylor/vect-isfiniteCharles Harris2016-01-103-35/+169
|\ \ \ \ \
| * | | | | ENH: vectorize isinf, isfinite and signbitJulian Taylor2016-01-103-35/+169
* | | | | | Merge pull request #6630 from shoyer/moveaxisseberg2016-01-105-11/+178
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | ENH: moveaxis functionStephan Hoyer2016-01-095-11/+178
| | |/ / / | |/| | |
* | | | | Merge pull request #6986 from jakirkham/test_innerproductCharles Harris2016-01-091-0/+52
|\ \ \ \ \
| * | | | | TST: Add an `inner` test with two 3D tensors.John Kirkham2016-01-091-0/+27
| * | | | | TST: Add more scalar tests to ensure `inner` keeps the answer with the right ...John Kirkham2016-01-091-0/+16
| * | | | | TST: Try using `inner` with some different orderings for matrix and vector pr...John Kirkham2016-01-091-0/+9
|/ / / / /
* | | | | Merge pull request #6962 from rehassachdeva/BugFixesCharles Harris2016-01-091-1/+1
|\ \ \ \ \
| * | | | | MAINT, STY: Removed unused variable in f2py/f90mod_rules.pyrehassachdeva2016-01-071-1/+1
* | | | | | Merge pull request #6982 from charris/update-6972Charles Harris2016-01-091-3/+5
|\ \ \ \ \ \
| * | | | | | DOC: Update trapz docstring.Charles Harris2016-01-091-3/+5