summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
...
* ENH: get rid of #warning directives, either by fixing the issue or changing ↵Pauli Virtanen2010-04-047-20/+10
| | | | them to comments
* 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
| | | | of changing the module to import from to io.
* * Fixed merge_arrays for arrays of size 1 (bug #1407)pierregm2010-03-262-90/+130
| | | | * merge_arrays now accepts sequences of lists/tuples as inputs
* BUG: Update StringIO in _lookfor_generate_cache for Python3.x.Charles Harris2010-03-251-8/+10
| | | | Make small cleanup.
* 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
| | | | cleaned up a bit more with this change, but that is for later.
* Fix wrong function name. These functions aren't used a present so this justCharles Harris2010-03-241-1/+1
| | | | fixes a warning.
* * 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
| | | | | | | | r8144 "ENH: core: make PyArray_FromAny error message more clear" is a cosmetic fix -- a revised one could be committed later on in, but let's have this one bug fixed quick. Also, add a regression test.
* BUG: lib: fix #1435, np.gradient should use zeros_likePauli Virtanen2010-03-182-1/+6
| | | | Thanks to Ryan May for the patch.
* BUG: include numpyconfig.h in npy_cpu.h to address #1371Pauli Virtanen2010-03-181-0/+5
|
* * fixed mvoid.__repr__pierregm2010-03-183-359/+454
| | | | | | | | | * fixed mvoid.__str__ for Python 2.4 (bug #1373) * add support to 'fill_value' and 'hardmask' in arange/empty/identity/zeros/ones (#1391) * intercept invalid values in `power` and derived * added empty_like/ones_like/zeros_like to the numpy.ma namespace * Allow indices as masked arrays in numpy.ma.take (#1418) * test_core : temporarily disable warnings when using numpy ufuncs on MaskedArray
* Fix version matcher for cases where version string appears in second line ↵Pearu Peterson2010-03-171-0/+3
| | | | (Intel Visual Compiler, IA-32, Version 11.1)
* minor change to ufunclike.fix, one less array to build and make compatibleDarren Dale2010-03-142-2/+20
| | | | with subclasses of ndarray
* 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 ↵Pauli Virtanen2010-03-065-67/+26
| | | | on Nose on Py3
* 3K: core: fix import_array to return NULL on failure -- according to the Py3 ↵Pauli Virtanen2010-03-061-1/+7
| | | | module init function scheme
* 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 ↵Pauli Virtanen2010-03-061-1/+0
| | | | be nose-compatible
* 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 ↵Pauli Virtanen2010-03-065-37/+41
| | | | compile yet, though, as the C code is not Py3 compatible)
* 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
| | | | | | Rewrite F2Py's test suite, so that it is run as a part of Numpy's tests. These tests require compiling extension modules on-the-fly, so I added a small helper module for that.
* Add capability to ctypeslib to convert a pointer to memory to an array of a ↵Travis Oliphant2010-02-281-4/+31
| | | | particular shape.
* BUG: Fix bug in lbnd implementation of the integ method of the Chebyshev andCharles Harris2010-02-273-4/+8
| | | | Polynomial classes.
* BUG: Make sure that the errors set by the PyCapsule functions are cleared. TheCharles Harris2010-02-2510-6/+98
| | | | | PyCObject functions don't set errors. Note that the error handling in the current code is spotty and needs to be fixed at some point.
* 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
| | | | | but the errors look like artifacts of an unfinished refactoring and partial update to support numpy.
* ENH: Cleanup numpy and ufunc apis for Python >= 3.1. Make sure that an error isCharles Harris2010-02-252-39/+77
| | | | | set for all error returns so that PyErr_Print() works properly in the import_umath* and import_array* macros.
* ENH: Try to fix numarray _capi.c for Python >= 3.1. Needs testing that I am notCharles Harris2010-02-251-10/+40
| | | | in a position to do.
* 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
| | | | | | PyCapsule update. The improved error handling of PyCapsules is tossed out. When Python3k becomes the required version and a major refactoring is undertaken, that defect should be fixed.
* BUG: NPY_PY3K probably isn't defined when libnumarray.h is included.Charles Harris2010-02-231-1/+1
|