summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_function_base.py
Commit message (Expand)AuthorAgeFilesLines
* STY: Giant comma spacing fixup.Charles Harris2013-08-181-56/+56
* BUG: fix np.median so it accepts array_like input. Clean up median tests.Ralf Gommers2013-08-171-56/+73
* MAINT: Separate nan functions into their own module.Charles Harris2013-08-121-128/+5
* ENH: implement median in terms of partitionJulian Taylor2013-08-121-0/+47
* BUG: Make np.insert check for out of bounds axis arguments.Félix Hartmann2013-08-021-0/+4
* TST: add test for negative axis values in np.insert.Félix Hartmann2013-08-021-0/+7
* MAINT: Use np.errstate context manager.Charles Harris2013-07-111-4/+1
* Merge pull request #3280 from seberg/issue-3279seberg2013-04-271-0/+4
|\
| * BUG: np.insert must copy index arraySebastian Berg2013-04-271-0/+4
* | 2to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris2013-04-131-0/+1
|/
* MAINT: np.delete keep old out of bound/negative index behaviorSebastian Berg2013-04-111-10/+13
* TST: New tests for insert/delete covering warnings and corner casesSebastian Berg2013-04-111-9/+65
* ENH: larger fixes for np.delete and np.insert functionsSebastian Berg2013-04-111-2/+51
* 2to3: Apply `print` fixer.Charles Harris2013-04-061-1/+1
* 2to3: Use absolute imports.Charles Harris2013-03-281-1/+1
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-271-1/+1
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-011-0/+2
* [FIX] preserve memory order in np.copy()Nathaniel J. Smith2012-10-011-0/+26
* TST: Add test for boolean insertHan Genuit2012-09-071-0/+2
* TST: Add extra test for multidimensional inserts.Han Genuit2012-09-071-0/+7
* BUG: Fix some tests in PR #192Travis E. Oliphant2012-07-171-8/+8
* Merge pull request #352 from HackerSchool12/bugfix808Travis E. Oliphant2012-07-171-1/+2
|\
| * BUG: Ticket #808: Insert was not performing properly when an integer wasLoftie Ellis2012-07-151-1/+2
* | Merge pull request #192 from rgommers/meshgrid3dTravis E. Oliphant2012-07-171-0/+28
|\ \ | |/ |/|
| * STY: meshgrid: some minor changes to address review comments.Ralf Gommers2012-02-051-4/+1
| * TST: meshgrid: test expected shapes for Cartesian and matrix indexing.Ralf Gommers2011-12-281-1/+12
| * BUG: meshgrid: raise error on single input.Ralf Gommers2011-12-281-0/+4
| * MAINT: clean up docstring and some minor items in meshgrid. Remove ndgrid.Ralf Gommers2011-12-131-2/+0
| * ENH: enhance meshgrid to generate 3D grids, sparse grids, matrix indexing.Per A. Brodtkorb2011-12-131-0/+18
* | ENH: Add kwarg support for vectorize (tickets #2100, #1156, and #1487)Michael McNeil Forbes2012-05-311-27/+128
* | BUG: Fix missing np prefix in test_function_base.py.Charles Harris2012-04-051-1/+1
* | TST: Add namespaces to digitize tests + one more testSkipper Seabold2012-04-031-9/+17
* | ENH: Give digitize left or right open interval optionSkipper Seabold2012-04-031-0/+15
* | STY: Style cleanups in numpy/lib/tests/test_function_base.Charles Harris2012-04-011-240/+245
* | ENH: improve interp() speed in some cases.Timo Kluck2012-04-011-0/+5
* | ENH: Allow bincount to accept empty arrays.Skipper Seabold2012-03-041-0/+11
* | TST: filter RuntimeWarnings for invalids from some more test files.Ralf Gommers2012-03-021-8/+12
* | TST: Test gradient(...) of datetime64 and timedelta64 arrays.Ben Root2012-01-271-1/+19
|/
* ENH: Add function for adding docstrings to ufuncs.Chris Jordan-Squire2011-08-291-0/+12
* ENH: umath: Make sum, prod, any, or functions use the .reduce method directlyMark Wiebe2011-08-271-1/+1
* BUG: fixed histogramdd bug with empty inputs. Closes #1899.David Huard2011-07-241-1/+4
* Regression test for missing dtype and order args in asarray_chkfiniteLars Buitinck2011-07-191-0/+6
* BUG: handle empty inputs in cov and corrcoef. Closes #1773.Ralf Gommers2011-04-021-0/+14
* BUG: make histogramdd work with infinite size bins. Closes #1788.Ralf Gommers2011-04-011-0/+25
* DEP: deprecate normed kw in histogram and restore its old behavior. IntroduceRalf Gommers2011-03-301-8/+19
* BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747.Ralf Gommers2011-03-291-0/+11
* ENH: Make all histogram functions work with empty input.Ralf Gommers2011-03-271-2/+9
* BUG: Use isnan to test for nan, avoids problems with signed nans.Charles Harris2011-03-071-40/+41
* ENH: Add minlength keyword to bincount. Patch from ticket #1595.David Warde-Farley2011-01-101-0/+15
* Made sure the warning filters in test_function_base and test_arraysetops do n...dhuard2010-08-311-4/+7