summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Expand)AuthorAgeFilesLines
* BUG: incorrect argument order to _copyto in in np.nanmax, np.nanminMarten van Kerkwijk2014-08-042-2/+27
* TST: add unittest for byte_boundsOlivier Grisel2014-03-191-0/+9
* FIX: missing asarray import in numpy.libs.utilsOlivier Grisel2014-03-191-1/+1
* BUG: fix ValueError for byte_bounds() on datetime arraymosessky2014-03-191-2/+3
* Fix stride_stricks.as_strided function for object arraysJay Bourque2014-03-012-1/+19
* Merge pull request #4406 from charris/backport-1.8-doc-fixesJulian Taylor2014-03-013-122/+135
|\
| * DOC: Fix documentation of normed in histogram2d and histogramdd.Charles Harris2014-03-012-107/+116
| * DOC: Improve the documentation of numpy.load.Charles Harris2014-03-011-15/+19
* | BUG: fix broken backport of histogramdd edge fix 96892ca60Julian Taylor2014-03-011-1/+0
|/
* BUG: Fix histogramdd treatment of events at rightmost binedgeJulian Taylor2014-03-012-2/+27
* DOC: some versionadded notesalex2014-02-271-0/+4
* BUG: Fixes #2799jaimefrio2014-02-272-2/+4
* BUG: IRR was returning nan instead of valid negative answer.Philip Eliot2014-02-152-6/+29
* TST: fix test_io.TestSavezLoadJulian Taylor2014-02-151-1/+1
* ENH: remove insecure mktemp useJulian Taylor2014-02-151-8/+16
* BUG: backport fromfile and large file fixes to 1.8Julian Taylor2014-01-192-1/+32
* BUG: fix loading from compressed .npzJulian Taylor2014-01-022-14/+83
* TST: fix test failure due to comparing floats with assert_equal.Ralf Gommers2014-01-021-1/+1
* MAINT: don't use open(.., 'U') in Python 3.x, is deprecated.Ralf Gommers2014-01-021-2/+7
* BUG: Fix chunked reading of strings longer than BUFFERSIZELuke Carmichael2013-11-092-1/+7
* MAINT: io: handle a bad fmt argument in savetxt by raising a ValueError.Warren Weckesser2013-10-202-0/+6
* BUG: close file-like objects returned by urlopencgohlke2013-10-151-0/+2
* TST: Raise AssertionError on failureJoseph Martinot-Lagarde2013-10-121-0/+2
* TST: Regression test for gh-2561Joseph Martinot-Lagarde2013-10-121-0/+14
* BUG: Disable check for oldstyle classes in python3Joseph Martinot-Lagarde2013-10-121-1/+4
* TST: Mark test_big_arrays as knownfail on Mac.Charles Harris2013-10-061-0/+1
* BUG: Refactor nanfunctions to behave as agreed on for 1.8.Charles Harris2013-10-052-236/+351
* BUG: preserve ndarray subclasses in medianJulian Taylor2013-10-022-1/+14
* MAINT: Use a.sum(...) rather than np.add.reduce(a,...) in nansum.Charles Harris2013-10-011-1/+1
* TST: Test that FutureWarning is not raised by nansum if not all-nan.Charles Harris2013-09-141-0/+3
* MAINT: Move FutureWarning in nansum.Charles Harris2013-09-141-4/+2
* BUG: Fix 0-sized ndindexSebastian Berg2013-09-092-1/+6
* TST: add test for Python 3.4 _ast.NameConstantChristoph Gohlke2013-09-081-0/+4
* ENH: add support for Python 3.4 ast.NameConstantChristoph Gohlke2013-09-081-0/+3
* BUG: Set __hash__ = None for non-hashable classes.Charles Harris2013-09-041-0/+2
* BUG: Make DeprecationWarning always raise error in test.Charles Harris2013-09-011-3/+5
* STY: Giant comma spacing fixup.Charles Harris2013-08-1831-875/+875
* STY: Giant whitespace cleanup.Charles Harris2013-08-184-4/+3
* BUG: fix np.median so it accepts array_like input. Clean up median tests.Ralf Gommers2013-08-172-56/+74
* TST: Test that savetxt works with objects having a write method.Daniel2013-08-151-0/+12
* ENH: Make savetxt work with file like objects.Daniel2013-08-151-1/+1
* DOC: Various fixes.Charles Harris2013-08-142-19/+18
* TST: Add tests for the nansum, nanmean, nanvar, and nanstd.Charles Harris2013-08-121-190/+367
* MAINT: Refactor nanfunctions.Charles Harris2013-08-121-333/+468
* MAINT: Separate nan functions into their own module.Charles Harris2013-08-125-463/+935
* ENH: implement median in terms of partitionJulian Taylor2013-08-122-12/+79
* DOC: fix some minor issues with histogram2d docstring formatting.Ralf Gommers2013-08-111-9/+19
* DOC: update example of histogram2d to doctest format.Frank Breitling2013-08-111-31/+30
* Fix doc typoMartin Spacek2013-08-041-1/+1
* BUG: Make np.insert check for out of bounds axis arguments.Félix Hartmann2013-08-022-1/+10