Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix bug #738 and add corresponding tests. | Pauli Virtanen | 2008-04-19 | 2 | -5/+67 | |
| | | | | | | | | lib._datasource.DataSource.abspath now sanitizes path names more carefully, making sure that all file paths reside in destdir, also on Windows. (Where both '/' and os.sep function as path separators, as far as os.path.join is concerned.) | |||||
* | Fix bug in parsing initexpr in 'INTEGER, PARAMETER :: ny = nx + 2' | Pearu Peterson | 2008-04-18 | 1 | -1/+1 | |
| | ||||||
* | Cleanup white space, fix a spelling, align some comments. | Charles Harris | 2008-04-18 | 1 | -95/+95 | |
| | ||||||
* | Fast implementation of take [patch by Eric Firing]. | Stefan van der Walt | 2008-04-18 | 4 | -20/+172 | |
| | ||||||
* | Add comments to numerictypes.py about what the 'kind' field of dtypes can be | cookedm | 2008-04-18 | 1 | -11/+18 | |
| | | | | (Also see the DtypesKind page on the numpy wiki) | |||||
* | Correct dependency on missing code. | Robert Kern | 2008-04-17 | 2 | -34/+67 | |
| | ||||||
* | De-obfuscate some test code. | Robert Kern | 2008-04-17 | 1 | -7/+7 | |
| | ||||||
* | Don't require gzip or bz2 until the actual functionality is requested. | Robert Kern | 2008-04-17 | 3 | -7/+32 | |
| | ||||||
* | Use the default terminal colour to print out INFO messages in distutils. | Stefan van der Walt | 2008-04-16 | 2 | -3/+5 | |
| | | | | This prevents visibility problems on backgrounds other than black. | |||||
* | Added and fixed some tests for loadtxt and savetxt. Cleaned up the docstring ↵ | dhuard | 2008-04-16 | 2 | -19/+124 | |
| | | | | of savetxt, added some info on formatting. | |||||
* | bumping version to 1.1.0 to signify the minor API breakage and numerous new ↵ | Jarrod Millman | 2008-04-15 | 1 | -1/+1 | |
| | | | | features | |||||
* | Test for r5034. | Robert Kern | 2008-04-14 | 1 | -0/+13 | |
| | ||||||
* | Fix up swap choice for FillWithScalar. | Travis Oliphant | 2008-04-14 | 1 | -1/+1 | |
| | ||||||
* | Remove R files? | Travis Oliphant | 2008-04-14 | 2 | -41/+0 | |
| | ||||||
* | core: | pierregm | 2008-04-14 | 6 | -146/+197 | |
| | | | | | | | | | | | | | | fix_invalid : use isfinite & skip setting a mask is there's no invalid data _update_from: force the default hardmask to False (instead of relying on class default) extras: cleanup mrecords: modified to meet new standards (import numpy as np) __array_finalize__ : skip the call to _update_from and directly update __dict__ __setmask__ : allow an update from a valid fieldmask mask : as recognizable property | |||||
* | Add one more level for silent modes in scons command. | David Cournapeau | 2008-04-13 | 1 | -4/+5 | |
| | ||||||
* | Make integers smaller than Long convert strings when possible. | Charles Harris | 2008-04-13 | 1 | -1/+1 | |
| | | | | | There is still a problem with the dimensions of the resulting array, but that problem is in the array creation code. | |||||
* | Simplify code in MyPyFloat_AsDouble and MyPyLong_As*. | Charles Harris | 2008-04-13 | 1 | -91/+49 | |
| | | | | | Add MyPyLong_AsLong. Use code generator for repeated code. | |||||
* | adding abreviation for pyplot | Jarrod Millman | 2008-04-13 | 1 | -4/+5 | |
| | ||||||
* | Reindent. Needs style cleanup too. | Charles Harris | 2008-04-13 | 1 | -1543/+1542 | |
| | | | | Small cleanup of MyPyFloat_AsDouble. | |||||
* | Fix fromregex, add documentation and tests [patch by Pauli Virtanen]. | Stefan van der Walt | 2008-04-12 | 2 | -29/+85 | |
| | ||||||
* | Compare against native-endian types, not endian-specific types. | Robert Kern | 2008-04-12 | 1 | -2/+2 | |
| | ||||||
* | Add lookfor function from ticket #734 | Travis Oliphant | 2008-04-11 | 1 | -1/+186 | |
| | ||||||
* | Add one more test from ticket #728 | Travis Oliphant | 2008-04-11 | 1 | -0/+4 | |
| | ||||||
* | Remove debugging. Python 2.6 still raises ValueError for bitwise operations | Charles Harris | 2008-04-11 | 1 | -8/+0 | |
| | | | | involving floats, as it should. Numpy doesn't. | |||||
* | Fixed #728 scalar coercion problem with mixed types and r_ | Travis Oliphant | 2008-04-11 | 4 | -11/+107 | |
| | ||||||
* | More debugging. | Charles Harris | 2008-04-11 | 1 | -3/+4 | |
| | ||||||
* | More debugging. | Charles Harris | 2008-04-11 | 1 | -1/+2 | |
| | ||||||
* | More object casting debugging. | Charles Harris | 2008-04-11 | 1 | -4/+3 | |
| | ||||||
* | Debugging test for check_object_casting. | Charles Harris | 2008-04-11 | 1 | -0/+7 | |
| | ||||||
* | Remove test of repr precision for longdouble. This varies between compilers and | Charles Harris | 2008-04-11 | 1 | -2/+0 | |
| | | | | | at some point may vary between architectures when quadprecision gets loose in the wild. | |||||
* | Add test for precision of longdouble repr. Need to add tests for all printing | Charles Harris | 2008-04-11 | 1 | -0/+3 | |
| | | | | precisions. | |||||
* | Fix missing format code so longdoubles print with proper precision. | Charles Harris | 2008-04-11 | 1 | -1/+1 | |
| | ||||||
* | Add functions for str instead of defining them to the same as repr. Reduce repr | Charles Harris | 2008-04-11 | 1 | -11/+37 | |
| | | | | | | | | | | | | | | | | | | | | | | | | precision of longdouble to 20 and set str precision of longdouble to the same as double. This is a first cut at looking through the formatting used to print numbers. The precisions are now #define FLOATPREC_REPR 8 #define FLOATPREC_STR 6 #define DOUBLEPREC_REPR 17 #define DOUBLEPREC_STR 12 #if SIZEOF_LONGDOUBLE == SIZEOF_DOUBLE #define LONGDOUBLEPREC_REPR DOUBLEPREC_REPR #define LONGDOUBLEPREC_STR DOUBLEPREC_STR #else /* More than probably needed on Intel FP */ #define LONGDOUBLEPREC_REPR 20 #define LONGDOUBLEPREC_STR 12 #endif This line, and those below, will be ignored-- M numpy/core/src/scalartypes.inc.src | |||||
* | Fix a long-standing typo preventing the build of scipy.stats.mvn. Sorry ↵ | Robert Kern | 2008-04-10 | 1 | -1/+1 | |
| | | | | Stefan, no unittest; the original code is not amenable to unittests without a large refactoring. | |||||
* | Fix issue 715. | Pearu Peterson | 2008-04-10 | 1 | -5/+6 | |
| | ||||||
* | Add check for printing complex dtypes, closes #693. | Stefan van der Walt | 2008-04-10 | 1 | -0/+10 | |
| | ||||||
* | Fix bound in error message. Patch from Andrew Straw, fixes ticket 732. | Charles Harris | 2008-04-09 | 1 | -2/+2 | |
| | ||||||
* | Add the cached Gaussian to the state tuple. Preserve backwards compatibility ↵ | Robert Kern | 2008-04-09 | 3 | -2235/+2325 | |
| | | | | with the old state tuple. | |||||
* | Fix #581. | Robert Kern | 2008-04-09 | 3 | -2194/+2222 | |
| | ||||||
* | Fix vander docstring. | Stefan van der Walt | 2008-04-09 | 1 | -4/+3 | |
| | ||||||
* | Add test for string to float conversions of various types. | Charles Harris | 2008-04-09 | 1 | -0/+9 | |
| | ||||||
* | Apply patch supplied by philbinj to fix ticket 630. | Charles Harris | 2008-04-09 | 1 | -0/+13 | |
| | ||||||
* | Fix import error. | Pearu Peterson | 2008-04-09 | 1 | -0/+2 | |
| | ||||||
* | Disable pythonxerbla.c patch for win32 (the MSVC linker failes on multiple ↵ | Pearu Peterson | 2008-04-09 | 1 | -0/+3 | |
| | | | | defined symbols) when using optimized lapack. | |||||
* | Fixing compile error from MSVC. Try 3. | Pearu Peterson | 2008-04-09 | 1 | -2/+2 | |
| | ||||||
* | Fixing compile error from MSVC. Try 2. | Pearu Peterson | 2008-04-09 | 1 | -1/+1 | |
| | ||||||
* | Fixing compile error from MSVC. | Pearu Peterson | 2008-04-09 | 2 | -2/+2 | |
| | ||||||
* | Cleanup. | Pearu Peterson | 2008-04-09 | 1 | -4/+0 | |
| | ||||||
* | Apply modified patch from ticket 673. The patch is effective when using ↵ | Pearu Peterson | 2008-04-09 | 3 | -5/+44 | |
| | | | | unoptimized lapack shipped with numpy [tested] or if optimized lapack library does not have xerbla_ defined [not tested] |