summaryrefslogtreecommitdiff
path: root/numpy/core/tests
Commit message (Expand)AuthorAgeFilesLines
* TST: mark floating point error tests as unconditional knownfail. See #1755.Ralf Gommers2012-05-191-6/+2
* TST: Remove tests of complex __format__.Charles Harris2012-05-021-4/+1
* Fix unicode string length computation in UNICODE_compare and add test.Thouis (Ray) Jones2012-05-021-0/+25
* BUG: ticket #2073, fix float16 __array_interface__ bug.Nicolas Pinto2012-04-291-2/+18
* BUG: ticket #2021. Fix segfault.Charles Harris2012-04-291-0/+5
* PY3: Fix for python3.2.Charles Harris2012-04-292-2/+2
* TST: Silence some test warnings.Charles Harris2012-04-292-2/+2
* BUG: ticket #2046, deleting array attributes causes segfault.Charles Harris2012-04-291-0/+11
* BUG: ticket #2033, a**2.0 has incorrect type.Charles Harris2012-04-291-0/+5
* BUG: ticket #2017, fix type hash.David Cournapeau2012-04-291-0/+12
* BUG: ticket #1948, fix regression for indexing chararrays with empty list.Ralf Gommers2012-04-261-0/+7
* BUG: ticket #1776, make complex division by zero to yield inf properly.Pauli Virtanen2012-04-262-0/+39
* ENH: ticket #1675, Add scalar support for the format() function.Mark Wiebe2012-04-261-0/+26
* BUG: Ticket #1672 fix allclose to work for scalar inf.Ralf Gommers2012-04-261-1/+1
* BUG: ticket #1138Hrvoje Niksic2012-04-261-0/+3
* BUG: Fix maximum/minimum for object arrays in Python 3.Charles Harris2012-04-262-26/+34
* BUG: ticket #1149, make argmin work for datetime.Ben Root2012-04-261-0/+105
* BUG: ticket #2063, make unique return consistent index.Bryan Van de Ven2012-04-261-0/+9
* TST: Add a test for ticket #2027Mark Wiebe2012-04-211-0/+9
* TST: skip umath complex tests on all platforms except linux. Closes #1926.Rui Pereira2011-09-101-5/+1
* BUG: nditer: The nditer was reusing the reduce loop inappropriately (#1938)Mark Wiebe2011-08-181-0/+17
* BUG: iter: writeonly operands weren't always being buffered correctly (Ticket...Mark Wiebe2011-07-111-0/+14
* BUG:py3k: fix error with recarry. Patch by C. Gohlke. Closes #1843.Ralf Gommers2011-07-011-0/+2
* BUG: nditer: Error in detecting double reduction loop (Fixes #1885)Mark Wiebe2011-06-282-0/+17
* BUG: core: Fix corner case of object array assignment (#1870)Mark Wiebe2011-06-221-0/+16
* BUG: core: PyArray_NewFromDescr needs to update flags when strides != NULL (f...Mark Wiebe2011-06-091-0/+2
* BUG: Regression of object <-> structured array data copying (ticket #1838)Mark Wiebe2011-05-212-2/+21
* BUG: Iterator reduction buffering bug when the inner loop is bigger than the ...Mark Wiebe2011-05-211-0/+5
* BUG: PyArray_FillWithZero didn't work in the general caseMark Wiebe2011-05-181-0/+8
* BUG: Fix buffered reduction case in nditer (ticket #1834)Mark Wiebe2011-05-181-1/+1
* TST: Reduced test case for ticket #1834Mark Wiebe2011-05-181-0/+19
* TST: fix test due to recent change for large arrays (ValueError / MemoryError).Ralf Gommers2011-04-301-2/+2
* TST: mark a string array test as knownfail for py3.x in 1.6.x branch only.Ralf Gommers2011-04-301-0/+2
* BUG: Remove buggy test for error trying to allocate too large array.Charles Harris2011-04-271-2/+1
* TST: fix test for too large array, raises ValueError, not MemoryError.Ralf Gommers2011-04-271-1/+1
* TST: fix forgotten import in core/test_regression.pyRalf Gommers2011-04-271-0/+1
* TST: Try to make the test for checking array size from dimensions aCharles Harris2011-04-231-1/+2
* BUG: Fix regression in checking array size from dimensions.Christolph Gohlke2011-04-231-1/+2
* TST: Add some specific desirable type-promotion use cases to the testsMark Wiebe2011-04-221-1/+50
* TST: Add tests for scalar*array type promotionMark Wiebe2011-04-222-37/+26
* TST: fix test failure related to intp on 64-bit Windows.Ralf Gommers2011-04-201-1/+1
* BUG: Python 2.4 doesn't accept the construction class foo():Charles Harris2011-04-053-5/+5
* WRN: Fix another warning for Python 3k.Charles Harris2011-04-031-1/+1
* BUG: Use // instead of / for integer division in Python 3k.Charles Harris2011-04-031-2/+2
* TST: silence some test warnings on py3.2 + win32 in 1.6.x branch. Related to ...Ralf Gommers2011-04-032-5/+15
* BUG: fix fromstring segfault with dtype=bool. Closes #1689. Thanks to Justin ...Ralf Gommers2011-04-031-0/+5
* 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-031-51/+53
* ENH: Changes (and tests) to allow exporting half-floats through the buffer in...Eli Stevens2011-04-021-6/+29