summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* MAINT/BUG: Remove special-casing for 0d arrays, now that indexing with a sing...Eric Wieser2017-10-212-16/+9
* Merge pull request #9896 from adeak/fix_savetxt_doc_indentCharles Harris2017-10-201-4/+4
|\
| * DOC: Unindent enumeration in savetxt docstringAndras Deak2017-10-211-4/+4
|/
* Merge pull request #9889 from eric-wieser/tidy-histogramCharles Harris2017-10-201-74/+93
|\
| * MAINT: rename mn and mx to first_edge and last_edgeEric Wieser2017-10-191-18/+19
| * MAINT: Tidy np.histogram, and improve error messagesEric Wieser2017-10-191-59/+77
* | Merge pull request #9887 from ahaldane/fix_reduce_alignmentCharles Harris2017-10-192-48/+56
|\ \
| * | BUG: add.reduce gives wrong results for arrays with funny stridesAllan Haldane2017-10-192-48/+56
* | | Merge pull request #9888 from eric-wieser/remove-astype-special-casesCharles Harris2017-10-191-12/+3
|\ \ \
| * | | MAINT: Remove workarounds for gh-9527Eric Wieser2017-10-181-12/+3
| | |/ | |/|
* | | BUG: Allow __array_interface__['shape'] == () (#7994)Erik Bray2017-10-192-6/+27
|/ /
* | Merge pull request #9883 from eric-wieser/0d-formatAllan Haldane2017-10-194-0/+67
|\ \
| * | STY: Add blank line after variable declarations.Charles Harris2017-10-181-0/+1
| * | ENH: Implement ndarray.__format__ for 0d arraysEric Wieser2017-10-174-0/+66
| |/
* | Merge pull request #9842 from bashtage/protect-empty-initCharles Harris2017-10-183-5/+23
|\ \
| * | BUG: Prevent invalid array shapes in seedKevin Sheppard2017-10-183-5/+23
| |/
* | DOC: Refine SVD documentation (#9845)Toon Verstraelen2017-10-182-48/+91
* | Merge pull request #9065 from eric-wieser/deprecate-bincountCharles Harris2017-10-184-12/+31
|\ \
| * | MAINT: improve wording of error messagesEric Wieser2017-10-172-4/+4
| * | MAINT: Make it clear how to remove the deprecationEric Wieser2017-10-171-12/+15
| * | DEP: 0 should be passed to bincount, not NoneEric Wieser2017-10-173-2/+18
| |/
* | Merge pull request #9884 from eric-wieser/unravel_index-0dCharles Harris2017-10-182-11/+36
|\ \
| * | BUG: Allow `unravel_index(0, ())` to return ()Eric Wieser2017-10-172-7/+26
| * | ENH: Improve unravel_index error message for out of bound valuesEric Wieser2017-10-171-4/+10
| |/
* | Merge pull request #9881 from eric-wieser/fix-count_nonzero-axisCharles Harris2017-10-183-1/+12
|\ \ | |/ |/|
| * BUG: count_nonzero treats empty axis tuples strangelyEric Wieser2017-10-173-1/+12
|/
* Merge pull request #9869 from charris/qr-doc-fixEric Wieser2017-10-161-7/+7
|\
| * DOC: Make qr options render correctly as list.Charles Harris2017-10-161-7/+7
* | Merge pull request #9849 from eric-wieser/cleanup-count_nonzeroCharles Harris2017-10-161-26/+6
|\ \
| * | MAINT: Fix all special-casing of dtypes in `count_nonzero`Eric Wieser2017-10-121-26/+6
* | | Merge pull request #9854 from xoviat/distutils-vcpkgCharles Harris2017-10-161-0/+28
|\ \ \
| * | | MAINT: make vcpkg include directories more clearxoviat2017-10-141-3/+13
| * | | BLD: distutils: auto-find vcpkg include and library directoriesxoviat2017-10-111-0/+18
* | | | Merge pull request #9868 from CatEars/update-docsCharles Harris2017-10-161-14/+14
|\ \ \ \
| * | | | DOC: Update arraypad to use np.pad in examplesHenke Adolfsson2017-10-161-14/+14
* | | | | Merge pull request #9865 from MSeifert04/remove-pyfits-add-astropyCharles Harris2017-10-151-2/+2
|\ \ \ \ \
| * | | | | DOC: Replace PyFITS reference with Astropy and PyTables with h5pyMichael Seifert2017-10-161-2/+2
* | | | | | Merge pull request #9866 from eric-wieser/fix-runtests-benchmark-compareCharles Harris2017-10-151-2/+2
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | BUG: Fix runtests --benchmark-compare in python 3Eric Wieser2017-10-151-2/+2
* | | | | | Merge pull request #9863 from serhiy-storchaka/savez-no-tmpfileCharles Harris2017-10-152-22/+38
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | ENH: Save to ZIP files without using temporary files.Serhiy Storchaka2017-10-152-22/+38
| |/ / / /
* | | | | Merge pull request #9862 from serhiy-storchaka/restore-environ-finallyCharles Harris2017-10-151-3/+3
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | BUG: Restore the environment variables when import multiarray fails.Serhiy Storchaka2017-10-151-3/+3
|/ / / /
* | | | Merge pull request #9835 from kenogo/masterCharles Harris2017-10-144-18/+22
|\ \ \ \ | |_|_|/ |/| | |
| * | | BUG: Raise TypeError instead of ValueError for ufunc isnat if operand is not ...Keno Goertz2017-10-113-2/+8
| * | | BENCH: Added missing ufunc benchmarksKeno Goertz2017-10-111-16/+14
* | | | Merge pull request #9856 from eric-wieser/fix-void-bool-2Charles Harris2017-10-143-4/+42
|\ \ \ \
| * | | | BUG: Make bool(void_scalar) and void_scalar.astype(bool) consistentEric Wieser2017-10-133-4/+42
| | |_|/ | |/| |
* | | | Merge pull request #9858 from MSeifert04/import_array_docCharles Harris2017-10-132-5/+5
|\ \ \ \
| * | | | DOC: Some minor fixes regarding import_arrayMichael Seifert2017-10-132-5/+5
| |/ / /