summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | | Merge pull request #7952 from charris/fix-for-setuptools_25_4Ralf Gommers2016-08-211-30/+33
|\ \ \ \
| * | | | BUG: Use keyword arguments to initialize Extension base class.Charles Harris2016-08-201-30/+33
| |/ / /
* | | | Merge pull request #7936 from goerz/sparse-type-checkStephan Hoyer2016-08-172-2/+45
|\ \ \ \ | |_|/ / |/| | |
| * | | ENH: improve duck typing inside iscomplexobjMichael Goerz2016-08-152-2/+45
* | | | Merge pull request #7937 from charris/fix-quicksort-for-bogus-comparisonJulian Taylor2016-08-172-4/+19
|\ \ \ \ | |_|/ / |/| | |
| * | | BUG: Guard against buggy comparisons in generic quicksort.Charles Harris2016-08-152-4/+19
| |/ /
* | | Merge pull request #7912 from mattip/pypy-fixes2Charles Harris2016-08-1512-92/+140
|\ \ \
| * | | ENH: skip or avoid gc/objectmodel differences btwn pypy and cpythonmattip2016-08-1512-92/+140
* | | | Merge pull request #7931 from charris/fix-npymath-for-ppcCharles Harris2016-08-151-1/+8
|\ \ \ \
| * | | | BUG: Check for HAVE_LDOUBLE_DOUBLE_DOUBLE_LE in npy_math_complex.Charles Harris2016-08-111-1/+8
* | | | | Merge pull request #7938 from juliantaylor/cbrtdocJulian Taylor2016-08-151-0/+1
|\ \ \ \ \
| * | | | | DOC: add cbrt to math summary pageJulian Taylor2016-08-151-0/+1
| | |_|_|/ | |/| | |
* | | | | Merge pull request #7491 from gfyoung/fromnumeric-compat-expandStephan Hoyer2016-08-151-0/+47
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | DOC: Update subclassing doc regarding downstream compatgfyoung2016-08-111-0/+47
|/ / / /
* | | | Merge pull request #7925 from vallsv/fix-msvccompile-gen-lib-optionRalf Gommers2016-08-121-1/+1
|\ \ \ \ | |_|/ / |/| | |
| * | | Monkey-patch _msvccompile.gen_lib_option like any other compilatorsValentin Valls2016-08-101-1/+1
|/ / /
* | | Merge pull request #7911 from skwbc/fix_issue#7835ahaldane2016-08-082-8/+46
|\ \ \
| * | | BUG: modified ndim condition to use masked_arrayskwbc2016-08-071-1/+1
| * | | BUG: fix for issue#7835 (ma.median of 1d)Shota Kawabuchi2016-08-072-8/+46
| |/ /
* | | Merge pull request #7908 from xabellan/masterCharles Harris2016-08-081-19/+3
|\ \ \ | |/ / |/| |
| * | Fixed MKL detection for recent versions of this library.Xavier Abellan Ecija2016-08-051-19/+3
|/ /
* | Merge pull request #7177 from gfyoung/count_nonzero_axisStephan Hoyer2016-08-057-42/+225
|\ \ | |/
| * ENH: added axis param for np.count_nonzerogfyoung2016-08-047-42/+225
|/
* Merge pull request #7903 from juliantaylor/sqrt-type-fixCharles Harris2016-08-043-4/+6
|\
| * BUG: fix float16 type not being called due to wrong orderingJulian Taylor2016-08-053-4/+6
|/
* Merge pull request #7898 from carterbox/masterCharles Harris2016-08-041-2/+2
|\
| * Spelling and grammar fix.Daniel Ching2016-08-041-2/+2
|/
* Merge pull request #7894 from charris/fixup-7790Charles Harris2016-08-032-15/+56
|\
| * DOC: Docstring capitalization/sentence fixes in numpy/ma/core.py.Charles Harris2016-08-031-7/+7
| * BUG: construct ma.array from np.array which contains paddingAllan Haldane2016-08-032-15/+56
* | Merge pull request #7889 from theultimatecrouton/doc_fixCharles Harris2016-08-031-1/+1
|\ \ | |/ |/|
| * DOC: #7881. Fix link to record arraysTom Bird2016-08-021-1/+1
|/
* Merge pull request #7885 from krytarowski/netbsd-2Ralf Gommers2016-08-013-1/+11
|\
| * Handle NetBSD specific <sys/endian.h>Kamil Rytarowski2016-07-313-1/+11
|/
* Merge pull request #7871 from juliantaylor/introsort2Charles Harris2016-07-292-23/+100
|\
| * BENCH: add more sort benchmarksJulian Taylor2016-07-291-0/+28
| * BUG: handle introsort depth limit properlyJulian Taylor2016-07-291-23/+72
* | Merge pull request #7879 from dunneff/patch-1Charles Harris2016-07-281-1/+1
|\ \
| * | DOC: fix typo in documentation of loadtxt (closes #7878)dunneff2016-07-281-1/+1
| |/
* | Merge pull request #7699 from nolta/preserve-lib-orderCharles Harris2016-07-282-45/+42
|\ \ | |/ |/|
| * BLD: preserve library orderMike Nolta2016-06-252-45/+42
* | Merge pull request #7866 from ssanderson/document-runtests-extra-argvCharles Harris2016-07-252-0/+9
|\ \
| * | STY: Use consistent variable convention.Scott Sanderson2016-07-251-2/+2
| * | DOC: Use a shorter example.Scott Sanderson2016-07-251-1/+1
| * | DOC: Add example to runtests usage doc.Scott Sanderson2016-07-231-0/+2
| * | DOC: Document extra args forwarding to nose.Scott Sanderson2016-07-231-0/+7
* | | Merge pull request #7853 from charris/fix-novalue-importCharles Harris2016-07-252-9/+44
|\ \ \
| * | | BUG: Raise RuntimeError when reloading numpy is attempted.Charles Harris2016-07-202-9/+44
| |/ /
* | | Merge pull request #7863 from juliantaylor/introsortCharles Harris2016-07-256-10/+73
|\ \ \ | |/ / |/| |
| * | ENH: turn quicksort into introsortJulian Taylor2016-07-214-0/+63