summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* TST: mark slow f2py tests + add f2py test function.David Cournapeau2010-03-318-0/+17
* BUG: fix div by zero handling in nper.David Cournapeau2010-03-312-9/+19
* BUG: move test from core to lib, mark it as deprected.David Cournapeau2010-03-312-10/+11
* BUG: fix divide by zero warnings in tests.David Cournapeau2010-03-312-13/+25
* BUG: fix kaiser for M=1.David Cournapeau2010-03-312-1/+3
* BUG: Should be using StringIO, not BytesIO. The 2to3 script takes careCharles Harris2010-03-271-6/+3
* * Fixed merge_arrays for arrays of size 1 (bug #1407)pierregm2010-03-262-90/+130
* BUG: Update StringIO in _lookfor_generate_cache for Python3.x.Charles Harris2010-03-251-8/+10
* CLN: Small cleanups. Fix docstring examples.Charles Harris2010-03-251-11/+6
* Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably beCharles Harris2010-03-242-2/+2
* Fix wrong function name. These functions aren't used a present so this justCharles Harris2010-03-241-1/+1
* * added test_take_masked_indicespierregm2010-03-221-0/+30
* * Use putmask instead of fancy indexing in _nanop (bug #1421)pierregm2010-03-222-383/+395
* BUG: core: fix #1436 by reverting r8144Pauli Virtanen2010-03-212-14/+5
* BUG: lib: fix #1435, np.gradient should use zeros_likePauli Virtanen2010-03-182-1/+6
* BUG: include numpyconfig.h in npy_cpu.h to address #1371Pauli Virtanen2010-03-181-0/+5
* * fixed mvoid.__repr__pierregm2010-03-183-359/+454
* Fix version matcher for cases where version string appears in second line (In...Pearu Peterson2010-03-171-0/+3
* minor change to ufunclike.fix, one less array to build and make compatibleDarren Dale2010-03-142-2/+20
* DOC - fix doc errorMatthew Brett2010-03-111-1/+1
* ENH: Make Chebyshev and Polynomial classes dominate ndarrays.Charles Harris2010-03-081-0/+3
* 3K: f2py: make create_cb_arglist work with Py3 functionsPauli Virtanen2010-03-061-0/+10
* 3K: f2py: port the array_from_pyobj test module to Py3Pauli Virtanen2010-03-062-2/+27
* BUG: f2py: fix infinite loops in *_from_pyobj with unicode inputPauli Virtanen2010-03-061-5/+5
* 3K: f2py: port much of f2py C code to Py3Pauli Virtanen2010-03-065-20/+153
* 3K: f2py: don't use test generators in the tests -- they don't really work on...Pauli Virtanen2010-03-065-67/+26
* 3K: core: fix import_array to return NULL on failure -- according to the Py3 ...Pauli Virtanen2010-03-061-1/+7
* 3K: f2py: map PyString -> PyBytes and PyInt -> PyLong on Py3Pauli Virtanen2010-03-061-0/+9
* 3K: f2py: address a semantic difference between Py2 and Py3Pauli Virtanen2010-03-061-1/+2
* ENH: testing: do not exclude array_from_pyobj from tests; it's now fixed to b...Pauli Virtanen2010-03-061-1/+0
* BUG: f2py: fix F90 detection in the testsPauli Virtanen2010-03-061-2/+2
* 3K: f2py: make f2py run far enough to produce output files (they don't compil...Pauli Virtanen2010-03-065-37/+41
* BUG: core: add a missing #include of ndarrayobject to npy_3kcompat.hPauli Virtanen2010-03-061-0/+1
* ENH: f2py: skip also test_array_from_pyobj if no C compiler is availablePauli Virtanen2010-03-061-0/+7
* BUG: distutils: clean up temporary files more aggressivelyPauli Virtanen2010-03-061-1/+2
* BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleansPauli Virtanen2010-03-061-0/+1
* ENH: f2py: convert test suite to Nose formPauli Virtanen2010-03-0630-1685/+1391
* Add capability to ctypeslib to convert a pointer to memory to an array of a p...Travis Oliphant2010-02-281-4/+31
* BUG: Fix bug in lbnd implementation of the integ method of the Chebyshev andCharles Harris2010-02-273-4/+8
* BUG: Make sure that the errors set by the PyCapsule functions are cleared. TheCharles Harris2010-02-2510-6/+98
* ENH: Add support for PyCapsule.Charles Harris2010-02-255-7/+76
* BUG: Fix imports in diagnose and excise old crap.Charles Harris2010-02-251-32/+14
* ENH: Add diagnose to f2py package. This makes the tests a bit easier to fix.Charles Harris2010-02-251-2/+4
* BUG: Shoddy quick fix of some f2py tests so they run. The tests expose errors,Charles Harris2010-02-255-43/+95
* ENH: Cleanup numpy and ufunc apis for Python >= 3.1. Make sure that an error isCharles Harris2010-02-252-39/+77
* ENH: Try to fix numarray _capi.c for Python >= 3.1. Needs testing that I am notCharles Harris2010-02-251-10/+40
* ENH: Support changed distutils API in Python 2.7.Stefan van der Walt2010-02-241-1/+5
* ENH: Add compatibility functions in npy_3kcompat.h for the PyCObject ->Charles Harris2010-02-231-2/+76
* BUG: NPY_PY3K probably isn't defined when libnumarray.h is included.Charles Harris2010-02-231-1/+1
* BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1.Charles Harris2010-02-2321-1122/+1329