summaryrefslogtreecommitdiff
path: root/numpy/lib
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #261 from charris/backport-libRalf Gommers2012-05-048-50/+220
|\
| * TST: fix string comparison test failures on Windows for Python 2.5.Ralf Gommers2012-05-021-4/+23
| * BUG: ticket #1936, loadtxt: fix extra nesting for subarray dtypes.Mark Wiebe2012-04-292-5/+30
| * BUG: ticket #1918, use Py_TYPE to access ob_type, so it works also on Py3Pauli Virtanen2012-04-291-9/+11
| * BUG: ticket #1793, fix failing npyio test under py3k. Thanks to Derek Homeier.Ralf Gommers2012-04-292-6/+16
| * BUG: ticket #1848, make tril/triu return the same dtype as the original array.Fabian Pedregosa2012-04-292-2/+14
| * BUG: ticket #1899, fixed histogramdd bug with empty inputs.David Huard2012-04-293-5/+11
| * BUG: ticket #1387, allow bincount to accept empty arrays.Skipper Seabold2012-04-293-11/+31
| * BUG: ticket #1573, savetxt now handles complex arrays.Paul Anton Letnes2012-04-292-10/+65
| * ENH: ticket #2048, lib: break reference cycle in NpzFile (#2048)Pauli Virtanen2012-04-292-1/+22
* | BUG: ticket #1747, make np.median() work for 0-D arrays.Ralf Gommers2012-04-262-2/+16
* | BUG: ticket #2063, make unique return consistent index.Bryan Van de Ven2012-04-261-3/+6
|/
* use np.atleast_Nd() to boost dimensions to ndminDerek Homeier2011-05-072-7/+24
* changed ndmin option in loadtxt to return shape (1, X.size) for single-row in...Derek Homeier2011-05-072-3/+12
* DOC:BUG: fix percentile examples. Closes #1813.Ralf Gommers2011-04-301-7/+6
* BUG: Workaround for the fact the Python 2.4 doesn't accept 'Ub' as a fileCharles Harris2011-04-051-1/+1
* BUG: Python 2.4 doesn't accept the construction class foo():Charles Harris2011-04-051-3/+3
* BUG: ticket #1071, fix loadtxt to handle tab delimited data with missingDerek Homeir2011-04-042-11/+18
* ENH: Let genfromtxt accept generators as text sources. Add testCharles Harris2011-04-032-20/+36
* BUG: Fix strings for Python 3k.Charles Harris2011-04-031-1/+1
* ENH: ticket #1616, let loadtxt accept generators in additions toCharles Harris2011-04-032-37/+41
* BUG: fix test issues in test_twodim_base.py. Simplify and make tests run.Ralf Gommers2011-04-031-64/+60
* ENH: add ndmin keyword to loadtxt. Closes #1562.Ralf Gommers2011-04-032-2/+36
* ENH: return empty array from loadtxt for an empty file. Closes #1752.Ralf Gommers2011-04-032-3/+11
* TST: add test for ticket #1458.Charles Harris2011-04-021-1/+12
* ENH: ticket #1458, make loadtxt(..., unpack=True) unpack structured arrayDerek Homier2011-04-021-2/+7
* BUG: ticket #1428, allow int64 and uint64 integer types to be specified inCharles Harris2011-04-022-2/+24
* BUG: ticket #1565, fix conversion of int64 and uint64 types by loadtxt.Christoph Gohlke2011-04-022-0/+20
* BUG: make histogramdd work with infinite size bins. Closes #1788.Ralf Gommers2011-04-022-7/+48
* BUG: handle empty inputs in cov and corrcoef. Closes #1773.Ralf Gommers2011-04-022-1/+21
* BUG: open genfromtxt file as binary; add test for filename use. FixesMatthew Brett2011-03-302-2/+21
* DEP: deprecate normed kw in histogram and restore its old behavior. IntroduceRalf Gommers2011-03-302-27/+47
* ENH: Make all histogram functions work with empty input.Ralf Gommers2011-03-273-13/+31
* API: Rename 'coords' to 'multi-index' in ravel_coords and iterator APIMark Wiebe2011-03-143-39/+40
* STY: Rename NPY_ITER_NO_INNER_ITERATION to NPY_ITER_EXTERNAL_LOOPMark Wiebe2011-03-141-2/+2
* API: Simplify basic iterator constructors, add 'itershape' to advanced iterat...Mark Wiebe2011-03-131-5/+5
* TST: fix ResourceWarning under Python 3.2rgommers2011-03-111-0/+1
* DEP: remove deprecated np.lib.ufunclike.log2 function.rgommers2011-03-112-54/+1
* DEP: remove deprecated get_numpy_include.rgommers2011-03-112-5/+2
* DEP: remove unique1d, setmember1d and intersect1d_nu.rgommers2011-03-113-183/+5
* DEP: Update deprecation messages in genloadtxt with a version number.rgommers2011-03-111-12/+14
* API: Rename the iterator function pointer types to be more consistent with Nu...Mark Wiebe2011-03-101-3/+3
* ENH: Use fmax.reduce and fmin.reduce to implement nanmax and nanmin.Charles Harris2011-03-071-6/+12
* BUG: Use isnan to test for nan, avoids problems with signed nans.Charles Harris2011-03-071-40/+41
* DOC: commit some more fixes from the doc wiki.rgommers2011-03-032-13/+15
* TST: clean up some ResourceWarnings from python 3.2.rgommers2011-03-023-17/+27
* TST: replace assert with assert_rgommers2011-03-021-15/+15
* DOC: merge more doc wiki edits.rgommers2011-03-023-13/+40
* TST: update namespace usage in lib.polynomial doctests.rgommers2011-03-011-11/+8
* BUG: correct file name in fromregex.rgommers2011-03-011-2/+2