summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Revert "DOC: add vstack, hstack, dstack reference to stack documentation."revert-7191-stack_documentationStephan Hoyer2016-02-051-5/+2
* Merge pull request #7191 from aukejw/stack_documentationCharles Harris2016-02-051-2/+5
|\
| * DOC: changed 'depth wise' to 'depthwise', 'the existing' to 'an existing'auke2016-02-051-7/+5
| * DOC: add vstack, hstack, dstack reference to stack documentation.auke2016-02-051-0/+5
* | Merge pull request #7193 from madphysicist/extra-assertCharles Harris2016-02-051-3/+0
|\ \
| * | MAINT: Removed supurious assert in histogram estimatorsJoseph Fox-Rabinovitz2016-02-051-3/+0
| |/
* | STY: Drop some trailing spaces in `numpy.ma.core`.John Kirkham2016-02-051-3/+3
|/
* TST: Fixed f2py test for Anaconda non-win32gfyoung2016-02-021-8/+3
* Update Wikipedia references for mtrand.pyxArne de Laat2016-02-021-12/+12
* TST: out of bounds bases in base_reprNathaniel Beaver2016-02-011-0/+6
* DOC: base_repr *can* handle negative integers.Nathaniel Beaver2016-02-011-1/+1
* BUG: check lower limit of base in base_repr.Nathaniel Beaver2016-02-011-0/+2
* ENH: usecols now accepts an int when only one column has to be readI--P2016-02-012-5/+68
* Merge pull request #7129 from madphysicist/percentile-midpoint-interpolationCharles Harris2016-01-312-2/+6
|\
| * BUG: Fixed 'midpoint' interpolation of np.percentile in odd cases.Joseph Fox-Rabinovitz2016-01-312-2/+6
* | Merge pull request #7145 from bastula/piecewiseCharles Harris2016-01-312-4/+20
|\ \
| * | MAINT: Addressed comments in PR #7145Aditya Panchal2016-01-311-2/+3
| * | BUG: Fixed regressions in np.piecewise in ref to #5737 and #5729.Aditya Panchal2016-01-292-4/+19
* | | Merge pull request #7156 from mhvk/linspace-subclass-safe2Charles Harris2016-01-312-4/+22
|\ \ \
| * | | Reascertain that linspace respects ndarray subclasses in start, stop.Marten van Kerkwijk2016-01-312-4/+22
* | | | Merge pull request #7119 from gfyoung/mingw_patchRalf Gommers2016-01-311-1/+1
|\ \ \ \
| * | | | BUG: Fixed mingw.lib errorgfyoung2016-01-251-1/+1
* | | | | Merge pull request #7152 from bertrand-l/fix/unicode-kwarg-breaks-padCharles Harris2016-01-312-1/+12
|\ \ \ \ \
| * | | | | BUG: mode kwargs passed as unicode to np.pad raises an exceptionbertrand2016-01-302-1/+12
* | | | | | Merge pull request #7147 from njsmith/disable-numpy-ufuncCharles Harris2016-01-313-18/+51
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Temporarily disable __numpy_ufunc__Nathaniel J. Smith2016-01-293-0/+51
| * | | | | TST: remove duplicate testNathaniel J. Smith2016-01-291-18/+0
| | |/ / / | |/| | |
* | | | | Merge pull request #7149 from seberg/missing-suffixCharles Harris2016-01-301-1/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | TST: Add missing suffix to temppath managerSebastian Berg2016-01-301-1/+1
* | | | | MAINT: Change `call_fortran` into `callfortran` in comments.Dongjoon Hyun2016-01-291-1/+1
* | | | | Merge pull request #7125 from madphysicist/percentile-docStephan Hoyer2016-01-291-42/+39
|\ \ \ \ \
| * | | | | MAINT: Accepted all review comments for PR#7125Joseph Fox-Rabinovitz2016-01-271-7/+3
| * | | | | DOC: Updated documentation wording and examples for np.percentile.Joseph Fox-Rabinovitz2016-01-261-39/+40
| | |_|_|/ | |/| | |
* | | | | Merge pull request #7102 from kawochen/CLN-ISO-8601Charles Harris2016-01-291-3/+3
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | MAINT: Removed conditionals that are always true in datetime_strings.cKa Wo Chen2016-01-231-3/+3
* | | | | TST: Unpickled void scalars must be behavedGraham Markall2016-01-291-0/+2
* | | | | BUG: Unpickled void scalars should be contiguousGraham Markall2016-01-292-1/+8
* | | | | Merge pull request #7026 from gfyoung/uniform_bounds_bugRobert Kern2016-01-291-0/+6
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | DOC: Clarify behavior in np.random.uniformgfyoung2016-01-251-0/+6
* | | | | MAINT: Fix some typos in a code string and commentsDongjoon Hyun2016-01-2730-38/+38
* | | | | MAINT: warn in egg_info command if using setuptools.sdist.Ralf Gommers2016-01-271-0/+8
| |_|/ / |/| | |
* | | | TST: Fixed f2py test for non-versioned python executablesgfyoung2016-01-251-4/+13
| |_|/ |/| |
* | | TST: Fixed f2py test for win32 virtualenvgfyoung2016-01-251-1/+7
|/ /
* | BUG: One element array inputs get one element arrays returned in np.randomgfyoung2016-01-242-188/+274
* | DOC: Clarified output size for broadcastable mtrand.pyx functionsgfyoung2016-01-231-182/+243
* | TST: Added broadcasting tests in test_random.pygfyoung2016-01-232-87/+644
|/
* DOC: Update `norm` docstring to include examples that reflect that all comput...John Kirkham2016-01-221-8/+8
* BUG: Make sure that the `ord=0` case returns a float.John Kirkham2016-01-222-5/+2
* TST: Verify that `norm` is properly casting values to floats as needed.John Kirkham2016-01-221-0/+96
* BUG: In `norm`, always cast non-floating point arrays to 64-bit floats. Other...John Kirkham2016-01-221-0/+3