Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | TST: mark slow f2py tests + add f2py test function. | David Cournapeau | 2010-03-31 | 8 | -0/+17 |
| | |||||
* | BUG: fix div by zero handling in nper. | David Cournapeau | 2010-03-31 | 2 | -9/+19 |
| | |||||
* | BUG: move test from core to lib, mark it as deprected. | David Cournapeau | 2010-03-31 | 2 | -10/+11 |
| | |||||
* | BUG: fix divide by zero warnings in tests. | David Cournapeau | 2010-03-31 | 2 | -13/+25 |
| | |||||
* | BUG: fix kaiser for M=1. | David Cournapeau | 2010-03-31 | 2 | -1/+3 |
| | |||||
* | BUG: Should be using StringIO, not BytesIO. The 2to3 script takes care | Charles Harris | 2010-03-27 | 1 | -6/+3 |
| | | | | of changing the module to import from to io. | ||||
* | * Fixed merge_arrays for arrays of size 1 (bug #1407) | pierregm | 2010-03-26 | 2 | -90/+130 |
| | | | | * merge_arrays now accepts sequences of lists/tuples as inputs | ||||
* | BUG: Update StringIO in _lookfor_generate_cache for Python3.x. | Charles Harris | 2010-03-25 | 1 | -8/+10 |
| | | | | Make small cleanup. | ||||
* | CLN: Small cleanups. Fix docstring examples. | Charles Harris | 2010-03-25 | 1 | -11/+6 |
| | |||||
* | Rename numpy/lib/io.py to numpy/lib/npyio.py. The py3tool can probably be | Charles Harris | 2010-03-24 | 2 | -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 just | Charles Harris | 2010-03-24 | 1 | -1/+1 |
| | | | | fixes a warning. | ||||
* | * added test_take_masked_indices | pierregm | 2010-03-22 | 1 | -0/+30 |
| | |||||
* | * Use putmask instead of fancy indexing in _nanop (bug #1421) | pierregm | 2010-03-22 | 2 | -383/+395 |
| | |||||
* | BUG: core: fix #1436 by reverting r8144 | Pauli Virtanen | 2010-03-21 | 2 | -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_like | Pauli Virtanen | 2010-03-18 | 2 | -1/+6 |
| | | | | Thanks to Ryan May for the patch. | ||||
* | BUG: include numpyconfig.h in npy_cpu.h to address #1371 | Pauli Virtanen | 2010-03-18 | 1 | -0/+5 |
| | |||||
* | * fixed mvoid.__repr__ | pierregm | 2010-03-18 | 3 | -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 Peterson | 2010-03-17 | 1 | -0/+3 |
| | | | | (Intel Visual Compiler, IA-32, Version 11.1) | ||||
* | minor change to ufunclike.fix, one less array to build and make compatible | Darren Dale | 2010-03-14 | 2 | -2/+20 |
| | | | | with subclasses of ndarray | ||||
* | DOC - fix doc error | Matthew Brett | 2010-03-11 | 1 | -1/+1 |
| | |||||
* | ENH: Make Chebyshev and Polynomial classes dominate ndarrays. | Charles Harris | 2010-03-08 | 1 | -0/+3 |
| | |||||
* | 3K: f2py: make create_cb_arglist work with Py3 functions | Pauli Virtanen | 2010-03-06 | 1 | -0/+10 |
| | |||||
* | 3K: f2py: port the array_from_pyobj test module to Py3 | Pauli Virtanen | 2010-03-06 | 2 | -2/+27 |
| | |||||
* | BUG: f2py: fix infinite loops in *_from_pyobj with unicode input | Pauli Virtanen | 2010-03-06 | 1 | -5/+5 |
| | |||||
* | 3K: f2py: port much of f2py C code to Py3 | Pauli Virtanen | 2010-03-06 | 5 | -20/+153 |
| | |||||
* | 3K: f2py: don't use test generators in the tests -- they don't really work ↵ | Pauli Virtanen | 2010-03-06 | 5 | -67/+26 |
| | | | | on Nose on Py3 | ||||
* | 3K: core: fix import_array to return NULL on failure -- according to the Py3 ↵ | Pauli Virtanen | 2010-03-06 | 1 | -1/+7 |
| | | | | module init function scheme | ||||
* | 3K: f2py: map PyString -> PyBytes and PyInt -> PyLong on Py3 | Pauli Virtanen | 2010-03-06 | 1 | -0/+9 |
| | |||||
* | 3K: f2py: address a semantic difference between Py2 and Py3 | Pauli Virtanen | 2010-03-06 | 1 | -1/+2 |
| | |||||
* | ENH: testing: do not exclude array_from_pyobj from tests; it's now fixed to ↵ | Pauli Virtanen | 2010-03-06 | 1 | -1/+0 |
| | | | | be nose-compatible | ||||
* | BUG: f2py: fix F90 detection in the tests | Pauli Virtanen | 2010-03-06 | 1 | -2/+2 |
| | |||||
* | 3K: f2py: make f2py run far enough to produce output files (they don't ↵ | Pauli Virtanen | 2010-03-06 | 5 | -37/+41 |
| | | | | compile yet, though, as the C code is not Py3 compatible) | ||||
* | BUG: core: add a missing #include of ndarrayobject to npy_3kcompat.h | Pauli Virtanen | 2010-03-06 | 1 | -0/+1 |
| | |||||
* | ENH: f2py: skip also test_array_from_pyobj if no C compiler is available | Pauli Virtanen | 2010-03-06 | 1 | -0/+7 |
| | |||||
* | BUG: distutils: clean up temporary files more aggressively | Pauli Virtanen | 2010-03-06 | 1 | -1/+2 |
| | |||||
* | BUG: f2py: ensure that ARRAY_ISCOMPATIBLE macro handles also booleans | Pauli Virtanen | 2010-03-06 | 1 | -0/+1 |
| | |||||
* | ENH: f2py: convert test suite to Nose form | Pauli Virtanen | 2010-03-06 | 30 | -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 Oliphant | 2010-02-28 | 1 | -4/+31 |
| | | | | particular shape. | ||||
* | BUG: Fix bug in lbnd implementation of the integ method of the Chebyshev and | Charles Harris | 2010-02-27 | 3 | -4/+8 |
| | | | | Polynomial classes. | ||||
* | BUG: Make sure that the errors set by the PyCapsule functions are cleared. The | Charles Harris | 2010-02-25 | 10 | -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 Harris | 2010-02-25 | 5 | -7/+76 |
| | |||||
* | BUG: Fix imports in diagnose and excise old crap. | Charles Harris | 2010-02-25 | 1 | -32/+14 |
| | |||||
* | ENH: Add diagnose to f2py package. This makes the tests a bit easier to fix. | Charles Harris | 2010-02-25 | 1 | -2/+4 |
| | |||||
* | BUG: Shoddy quick fix of some f2py tests so they run. The tests expose errors, | Charles Harris | 2010-02-25 | 5 | -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 is | Charles Harris | 2010-02-25 | 2 | -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 not | Charles Harris | 2010-02-25 | 1 | -10/+40 |
| | | | | in a position to do. | ||||
* | ENH: Support changed distutils API in Python 2.7. | Stefan van der Walt | 2010-02-24 | 1 | -1/+5 |
| | |||||
* | ENH: Add compatibility functions in npy_3kcompat.h for the PyCObject -> | Charles Harris | 2010-02-23 | 1 | -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 Harris | 2010-02-23 | 1 | -1/+1 |
| | |||||
* | BUG: Replace deprecated PyCObject by PyCapsule for Python >= 3.1. | Charles Harris | 2010-02-23 | 21 | -1122/+1329 |
| |