Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix ticket #506 by applying the patch from cdavid. | Charles Harris | 2007-05-13 | 1 | -12/+25 |
| | |||||
* | Add iinfo based on a patch by Albert Strasheim (ticket #250). | Stefan van der Walt | 2007-05-13 | 2 | -2/+72 |
| | |||||
* | Add regression tests for tickets 469, 503, 514 and 516. | Stefan van der Walt | 2007-05-13 | 1 | -0/+25 |
| | |||||
* | Add documentation for eigvals, eigvalsh, eig, and eigh. | Charles Harris | 2007-05-13 | 1 | -4/+165 |
| | |||||
* | Add documentation for diagonal. | Charles Harris | 2007-05-13 | 3 | -150/+381 |
| | | | | Reformat documentation of sort, argsort, lexsort, and searchsorted. | ||||
* | Add/edit documentation for mean, std, var. | Charles Harris | 2007-05-12 | 3 | -30/+305 |
| | |||||
* | Special check for common error in arange. | Travis Oliphant | 2007-05-11 | 1 | -1/+9 |
| | |||||
* | Fix nan functions to allow sub-class. | Travis Oliphant | 2007-05-11 | 1 | -5/+5 |
| | |||||
* | Raise exception when pyrex is required. | Pearu Peterson | 2007-05-11 | 1 | -1/+5 |
| | |||||
* | Using meaningful NotFoundError exception for blas_opt and lapack_opt resources. | Pearu Peterson | 2007-05-11 | 1 | -0/+4 |
| | |||||
* | Clean up setup() calls. | Pearu Peterson | 2007-05-11 | 17 | -17/+19 |
| | |||||
* | Improved error message for missing Python.h. | Pearu Peterson | 2007-05-11 | 1 | -1/+7 |
| | |||||
* | Fix ticket #514 (and probably others) due to inappropriate fixing of largest ↵ | Travis Oliphant | 2007-05-10 | 2 | -6/+5 |
| | | | | string type on common type conversion. | ||||
* | Remove wasteful check. Fix problem with PyArray_Transpose for large arrays. | Travis Oliphant | 2007-05-10 | 2 | -2/+3 |
| | |||||
* | Improvement of separator handling for fromstring and fromfile. | cookedm | 2007-05-10 | 4 | -352/+437 |
| | | | | | | | | | | | * fromstring and fromfile should behave identically on text. * added more test cases for fromstring * the dtype gets passed to the C code doing the type-specific string conversions. We don't use it, but someone making their own dtype could. * separator handling for fromfile is moved out of the type-specific conversion. I've left the argument in for backwards compatibility; when the API version is next bumped up, it can be removed. * separator handling in fromfile is now safe (no fscanf(fp, sep) anymore) | ||||
* | Use a try/finally instead of try/except Exception for cleanup in ↵ | cookedm | 2007-05-10 | 1 | -5/+3 |
| | | | | numpy/distutils/core.py | ||||
* | Better warning when using ScipyTest | cookedm | 2007-05-10 | 1 | -1/+1 |
| | |||||
* | Add docstrings to numpy/core/code_generators/genapi.py | cookedm | 2007-05-10 | 1 | -0/+36 |
| | |||||
* | Change recarray attribute getting to return a view using the class instead ↵ | Travis Oliphant | 2007-05-09 | 1 | -1/+1 |
| | | | | of pure recarray when fields are present. | ||||
* | assert_approx_equal used significant digit more than requested. | Robert Kern | 2007-05-04 | 1 | -1/+1 |
| | |||||
* | Fix compatibility layer definition of std | Travis Oliphant | 2007-05-04 | 1 | -1/+2 |
| | |||||
* | adding toc to distutils docs | Jarrod Millman | 2007-05-01 | 1 | -0/+2 |
| | |||||
* | Fix typo. | Robert Kern | 2007-04-30 | 1 | -1/+1 |
| | |||||
* | Add regression test. Fix order of arguments in test_multiarray. | Stefan van der Walt | 2007-04-30 | 2 | -1/+9 |
| | |||||
* | Fix silly initialization of input variable. | Travis Oliphant | 2007-04-27 | 1 | -1/+1 |
| | |||||
* | Add test case for integer division | cookedm | 2007-04-25 | 1 | -0/+8 |
| | |||||
* | Restore invariant of (x == (x/y)*y + (x%y)) by making integer division with ↵ | Travis Oliphant | 2007-04-24 | 1 | -3/+39 |
| | | | | mixed-sign operands match Python. | ||||
* | Add patch to system_info for building with MKL on Win32 #504 | Travis Oliphant | 2007-04-24 | 1 | -2/+9 |
| | |||||
* | NumpyTest.test() takes an extra argument, all, which, if true, makes | cookedm | 2007-04-22 | 2 | -112/+102 |
| | | | | | it act like NumpyTest.testall(). This comes from some refactoring to remove duplicate code in .test and .testall(). | ||||
* | Some distutils work: | cookedm | 2007-04-22 | 3 | -67/+70 |
| | | | | | | | | | | | | | | - Add better support for C++ in numpy.distutils. Instead of munging the C compiler command, build_clib and build_ext call the new Compiler.cxx_compiler() method to get a version of the compiler suitable for C++ (this also takes care of the special needs of AIX). - If config_fc is specified in the Extension definition, merge that info instead of replacing it (otherwise, the name of the Fortran compiler is overwritten). This is done at the key level (ex., compiler options are replaced instead of appended). - clean up compiler.py a bit - clean up linking in build_ext | ||||
* | Better version handling for gnu and intel Fortran compilers | cookedm | 2007-04-22 | 5 | -34/+140 |
| | | | | | | | | | - gnu compilers check if the version is >= 4, in which case it's gfortran - add a test file for gnu compiler check - simplify version matching on intel compilers to be more flexible - add FCompiler.find_executables so that subclasses can find executables at .customize() time, instead of when the class is created. | ||||
* | Add loadtxt and savetxt adapted from matplotlib. | Travis Oliphant | 2007-04-22 | 1 | -1/+172 |
| | |||||
* | Fix byte-swapping error on conversion to Object array from big-endian array ↵ | Travis Oliphant | 2007-04-20 | 1 | -3/+9 |
| | | | | (byte-swapping was happening twice in that case). This fixes #503. | ||||
* | Fix pointer size for F90 allocatable arrays on 64-bit platform. Closes ↵ | Stefan van der Walt | 2007-04-20 | 1 | -2/+4 |
| | | | | ticket #147. | ||||
* | f2py: support for assumed shape arrays of fortran callback functions (will ↵ | Pearu Peterson | 2007-04-17 | 1 | -0/+4 |
| | | | | not work with python callback functions, for instance). | ||||
* | Sort module names when running tests | cookedm | 2007-04-17 | 1 | -1/+4 |
| | |||||
* | Add another place to check for configuration, namely ~/.numpy-site.cfg, to ↵ | Robert Kern | 2007-04-15 | 1 | -2/+4 |
| | | | | help automatic installation where one can't edit the source checkout. I've added the alternate name to make it hidden because that's just considerate. | ||||
* | Fix command dependencies for build_ext. This should fix a number of problems ↵ | Robert Kern | 2007-04-15 | 1 | -3/+2 |
| | | | | where the full 'build_src build_clib build_ext' chain of commands needed to be specified. | ||||
* | Updated date, example function documentation and python links | wfspotz@sandia.gov | 2007-04-13 | 3 | -72/+74 |
| | |||||
* | Reformatted numpy.i routines descriptions | wfspotz@sandia.gov | 2007-04-13 | 3 | -95/+318 |
| | |||||
* | Fixed typo in documentation | wfspotz@sandia.gov | 2007-04-13 | 4 | -5/+5 |
| | |||||
* | A few more changes to pep_buffer.txt | Travis Oliphant | 2007-04-13 | 1 | -45/+80 |
| | |||||
* | remove unneeded semi-colon, add missing import, whitespace cleanups | Tim Leslie | 2007-04-13 | 1 | -13/+14 |
| | |||||
* | Add check for fix to allowing types to create arrays. | Travis Oliphant | 2007-04-12 | 1 | -0/+6 |
| | |||||
* | Fix scalar creation function so it can take sequences. | Travis Oliphant | 2007-04-12 | 1 | -0/+1 |
| | |||||
* | Fixes to pep_buffer.txt | Travis Oliphant | 2007-04-12 | 1 | -61/+62 |
| | |||||
* | Add example to buffer interface. | Travis Oliphant | 2007-04-12 | 1 | -25/+61 |
| | |||||
* | Cleanup whitespace. | Charles Harris | 2007-04-11 | 2 | -174/+174 |
| | |||||
* | Provided more sophisticated typecheck typemap for IN_ARRAYs | wfspotz@sandia.gov | 2007-04-11 | 1 | -9/+9 |
| | |||||
* | long lost author was... eric. | Eric Jones | 2007-04-11 | 1 | -1/+1 |
| |