summaryrefslogtreecommitdiff
path: root/numpy/lib/tests
Commit message (Expand)AuthorAgeFilesLines
* BUG: Make DeprecationWarning always raise error in test.Charles Harris2013-09-011-3/+5
* STY: Giant comma spacing fixup.Charles Harris2013-08-1815-717/+717
* STY: Giant whitespace cleanup.Charles Harris2013-08-181-1/+1
* BUG: fix np.median so it accepts array_like input. Clean up median tests.Ralf Gommers2013-08-171-56/+73
* TST: Test that savetxt works with objects having a write method.Daniel2013-08-151-0/+12
* DOC: Various fixes.Charles Harris2013-08-141-4/+4
* TST: Add tests for the nansum, nanmean, nanvar, and nanstd.Charles Harris2013-08-121-190/+367
* MAINT: Separate nan functions into their own module.Charles Harris2013-08-122-128/+245
* 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: Remove uses of the WarningManager class.Charles Harris2013-07-121-26/+10
* MAINT: Use np.errstate context manager.Charles Harris2013-07-112-79/+25
* TST: New test to ensure np.pad allows pad_width of zero.Jostein Bø Fløystad2013-07-051-0/+8
* BUG: Make np.load transfer file ownership to the returned NpzFile.Charles Harris2013-06-221-1/+13
* adjust the optimal IO buffer size for npz filesBartosz Telenczuk2013-06-121-5/+3
* BUG: fix loading large npz files (fixes #2922)Bartosz Telenczuk2013-06-121-1/+18
* BUG: The npv function in financial.py was incorrectly implemented.bebert2182013-05-291-1/+1
* ENH: implement may_share_memory in CJulian Taylor2013-05-281-0/+15
* ENH: improved, faster algorithm for array paddingJosh Warner (Mac)2013-05-191-15/+15
* 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 unicode fixer.Charles Harris2013-04-211-1/+3
* | 2to3: Apply urllib fixer.Charles Harris2013-04-141-6/+10
* | 2to3: Apply zip fixer.Charles Harris2013-04-133-16/+16
* | 2to3: Apply the `numliterals` fixer and skip the `long` fixer.Charles Harris2013-04-134-6/+7
|/
* 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
* ENH: add `invert` parameter to numpy.in1d().Julien Phalip2013-04-081-0/+9
* Merge pull request #3205 from charris/2to3-apply-dict-fixerCharles Harris2013-04-071-2/+2
|\
| * 2to3: apply `dict` fixer.Charles Harris2013-04-061-2/+2
* | Merge pull request #3202 from charris/2to3-reduce-fixupsnjsmith2013-04-071-3/+1
|\ \ | |/ |/|
| * MAINT: Cleanup some imports involving reduce.Charles Harris2013-04-061-3/+1
* | 2to3: Apply `print` fixer.Charles Harris2013-04-0619-19/+19
|/
* 2to3: Apply `imports` fixer.Charles Harris2013-04-026-269/+277
* 2to3: Use absolute imports.Charles Harris2013-03-2819-19/+19
* 2to3: Replace xrange by range and use list(range(...)) where neededCharles Harris2013-03-274-6/+6
* TST: Get rid of a ResourceWarning.Charles Harris2013-03-031-6/+15
* 2to3: Put `from __future__ import division in every python file.Charles Harris2013-03-0119-7/+43
* 2to3: Use modern exception syntax.Charles Harris2013-02-262-3/+3
* BUG: Make nansum work with booleans.Charles Harris2013-02-121-0/+9
* TST: Add a test for ndindex call.Travis E. Oliphant2013-01-211-0/+4
* Fix the test for numpy.ndindex()Travis E. Oliphant2013-01-111-0/+6
* Fix the test for numpy.ndindex()Travis E. Oliphant2013-01-101-1/+1
* Add test for optional size argument for ndindexJay Bourque2013-01-091-0/+4
* TST: Add test for in1d ravellingSebastian Berg2012-12-161-0/+13
* BUG: Fix regression for in1d with non-array inputSebastian Berg2012-12-081-2/+3
* [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