summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* BUG: fix tests in test_linalg.py. Do not subclass from TestCase.Ralf Gommers2011-04-031-6/+6
* BUG: fix test issues in test_twodim_base.py. Simplify and make tests run.Ralf Gommers2011-04-031-64/+60
* BUG: fix test_scalarmath.py, don't use TestCase subclass for geenrator test.Ralf Gommers2011-04-031-2/+2
* BUG: do not subclass TestCase for generator tests. Runs ~80 more tests now.Ralf Gommers2011-04-031-8/+7
* BUG: fix allclose to work for scalar inf. Also actually runs tests.Ralf Gommers2011-04-032-53/+55
* TST: silence some harmless test warnings introduced by 65b77ee9.Ralf Gommers2011-04-032-2/+2
* 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
* TST: Add test for ticket #1559.Charles Harris2011-04-021-0/+10
* BUG: Fix atleast_1d and atleast_2d to work with masked arrays.weathergod2011-04-021-2/+14
* STY: core/buffer: handle also cases where descr->subarray->shape is not a tuplePauli Virtanen2011-04-031-3/+14
* BUG: core/pickle: use only non-interned strings as buffer in unpickled arrays...Pauli Virtanen2011-04-022-0/+20
* STY: core/pickle: fix minor refcount issues in array_setstatePauli Virtanen2011-04-021-7/+11
* 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
* WHT: Cleanup trailing whitespace.Charles Harris2011-04-025-11/+7
* ENH: Changes (and tests) to allow exporting half-floats through the buffer in...Eli Stevens2011-04-023-6/+32
* BUG: core: make complex division by zero to yield inf properly (#1776)Pauli Virtanen2011-04-024-9/+64
* DOC: improve clarity of window function docs.Ralf Gommers2011-04-021-55/+33
* BUG: handle empty inputs in cov and corrcoef. Closes #1773.Ralf Gommers2011-04-022-1/+21
* BUG: core/buffer: fix another offset counting bug in pep-3118 format string g...Pauli Virtanen2011-04-022-1/+17
* BUG: Move the default errstate test over to the right place. Fix the seterr t...Robert Kern2011-04-012-12/+12
* BUG: Add test for the default error state.Robert Kern2011-04-011-0/+9
* ENH: Change the default error handling to warn instead of print, except for u...Robert Kern2011-04-013-24/+28
* BUG: core/buffer: fix bug in pep-3118 format strings for aligned structsPauli Virtanen2011-04-012-1/+18
* BUG: make histogramdd work with infinite size bins. Closes #1788.Ralf Gommers2011-04-012-7/+48
* TST: lower precision for one more test in random. Closes #1768. Again.Ralf Gommers2011-04-011-1/+1
* BUG: fix f2py bug in generating interfaces for assumed shape support as an ad...Pearu Peterson2011-03-311-1/+2
* Merge branch 'test-genfromtxt-fname' of git://github.com/matthew-brett/numpy ...Charles Harris2011-03-302-2/+21
|\
| * BUG: open genfromtxt file as binary; add test for filename useMatthew Brett2011-03-302-2/+21
* | BUG: lib: catch SWIG NameError in lookfor (#1704)Pauli Virtanen2011-03-301-3/+12
* | DEP: deprecate normed kw in histogram and restore its old behavior. IntroduceRalf Gommers2011-03-302-27/+47
* | DOC: correct note about correspondence vstack and concatenate. Closes #1446.Ralf Gommers2011-03-301-2/+2
* | ENH: distutils: provide better support for C++ code on HPUX. Closes #1383.Ralf Gommers2011-03-301-0/+12
* | BUG: distutils: update HP compiler flags. Closes #1377.Ralf Gommers2011-03-301-3/+3
|/
* TST: tests for deprecated decorator.Ralf Gommers2011-03-292-10/+37
* BUG: make np.median() work for 0-D arrays. Also add tests. Closes #1747.Ralf Gommers2011-03-292-2/+16
* DOC: correct signature and description of ndarray.getfield.Ralf Gommers2011-03-291-35/+20
* TST: add some tests for array2print.Ralf Gommers2011-03-291-36/+46
* BUG: make correlate/convolve work also with unicode mode arg. Closes #1705.Ralf Gommers2011-03-291-1/+1
* TST: core: add more tests for struct array field namesMatthew Brett2011-03-291-1/+44
* BUG: fix f2py bug in generating interfaces for assumed shape support.Pearu Peterson2011-03-291-1/+1
* BUG: Fix f2py function wrapping (assumed_shape test) for gcc 4.5.x.Pearu Peterson2011-03-281-3/+1
* BUG: f2py fix to scan literal strings with ! character, fixes ticket #1228Pearu Peterson2011-03-271-1/+1
* ENH: Make all histogram functions work with empty input.Ralf Gommers2011-03-273-13/+31
* TST: Python 2.6 doesn't implement complex.__format__, so skip the tests thereMark Wiebe2011-03-261-6/+13
* TST: Add tests for array str formatting of complex values.Charles Harris2011-03-251-0/+47
* BUG: Fix str formatting of complex special values and clongdouble complex.Charles Harris2011-03-251-17/+44