summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Cleanup code style in generic ufunc loops.Charles Harris2008-04-201-145/+278
|
* Add tests for generic ufunct loops preparatory to some code cleanup.Charles Harris2008-04-191-1/+129
| | | | | | | Two tests currently fail and are commented out. PyUFunc_O_O_method -- fails PyUFunc_OO_O_method -- fails
* Fixing #738: Even more careful drive letter handling. And make the tests ↵Pauli Virtanen2008-04-192-3/+3
| | | | actually pass on Windows.
* Fixing #738: remember to sanitize away also Windows drive lettersPauli Virtanen2008-04-191-1/+2
|
* Fix bug #738 and add corresponding tests.Pauli Virtanen2008-04-192-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 Peterson2008-04-181-1/+1
|
* Cleanup white space, fix a spelling, align some comments.Charles Harris2008-04-181-95/+95
|
* Fast implementation of take [patch by Eric Firing].Stefan van der Walt2008-04-184-20/+172
|
* Add comments to numerictypes.py about what the 'kind' field of dtypes can becookedm2008-04-181-11/+18
| | | | (Also see the DtypesKind page on the numpy wiki)
* Correct dependency on missing code.Robert Kern2008-04-172-34/+67
|
* De-obfuscate some test code.Robert Kern2008-04-171-7/+7
|
* Don't require gzip or bz2 until the actual functionality is requested.Robert Kern2008-04-173-7/+32
|
* Use the default terminal colour to print out INFO messages in distutils. Stefan van der Walt2008-04-162-3/+5
| | | | This prevents visibility problems on backgrounds other than black.
* Include "sudo" as part of system-wide installation instructions.Stefan van der Walt2008-04-161-11/+10
|
* Added and fixed some tests for loadtxt and savetxt. Cleaned up the docstring ↵dhuard2008-04-162-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 Millman2008-04-151-1/+1
| | | | features
* Test for r5034.Robert Kern2008-04-141-0/+13
|
* Fix up swap choice for FillWithScalar.Travis Oliphant2008-04-141-1/+1
|
* Remove R files?Travis Oliphant2008-04-142-41/+0
|
* core:pierregm2008-04-146-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 Cournapeau2008-04-131-4/+5
|
* Make integers smaller than Long convert strings when possible.Charles Harris2008-04-131-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 Harris2008-04-131-91/+49
| | | | | Add MyPyLong_AsLong. Use code generator for repeated code.
* adding abreviation for pyplotJarrod Millman2008-04-131-4/+5
|
* Reindent. Needs style cleanup too.Charles Harris2008-04-131-1543/+1542
| | | | Small cleanup of MyPyFloat_AsDouble.
* Fix fromregex, add documentation and tests [patch by Pauli Virtanen].Stefan van der Walt2008-04-122-29/+85
|
* Compare against native-endian types, not endian-specific types.Robert Kern2008-04-121-2/+2
|
* Add lookfor function from ticket #734Travis Oliphant2008-04-111-1/+186
|
* Add one more test from ticket #728Travis Oliphant2008-04-111-0/+4
|
* Remove debugging. Python 2.6 still raises ValueError for bitwise operationsCharles Harris2008-04-111-8/+0
| | | | involving floats, as it should. Numpy doesn't.
* Fixed #728 scalar coercion problem with mixed types and r_Travis Oliphant2008-04-114-11/+107
|
* More debugging.Charles Harris2008-04-111-3/+4
|
* More debugging.Charles Harris2008-04-111-1/+2
|
* More object casting debugging.Charles Harris2008-04-111-4/+3
|
* Debugging test for check_object_casting.Charles Harris2008-04-111-0/+7
|
* Remove test of repr precision for longdouble. This varies between compilers andCharles Harris2008-04-111-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 printingCharles Harris2008-04-111-0/+3
| | | | precisions.
* Fix missing format code so longdoubles print with proper precision.Charles Harris2008-04-111-1/+1
|
* Add functions for str instead of defining them to the same as repr. Reduce reprCharles Harris2008-04-111-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 Kern2008-04-101-1/+1
| | | | Stefan, no unittest; the original code is not amenable to unittests without a large refactoring.
* Fix issue 715.Pearu Peterson2008-04-101-5/+6
|
* Add check for printing complex dtypes, closes #693.Stefan van der Walt2008-04-101-0/+10
|
* Fix bound in error message. Patch from Andrew Straw, fixes ticket 732.Charles Harris2008-04-091-2/+2
|
* Add the cached Gaussian to the state tuple. Preserve backwards compatibility ↵Robert Kern2008-04-093-2235/+2325
| | | | with the old state tuple.
* Fix #581.Robert Kern2008-04-093-2194/+2222
|
* Fix vander docstring.Stefan van der Walt2008-04-091-4/+3
|
* Add test for string to float conversions of various types.Charles Harris2008-04-091-0/+9
|
* Apply patch supplied by philbinj to fix ticket 630.Charles Harris2008-04-091-0/+13
|
* Fix import error.Pearu Peterson2008-04-091-0/+2
|
* Disable pythonxerbla.c patch for win32 (the MSVC linker failes on multiple ↵Pearu Peterson2008-04-091-0/+3
| | | | defined symbols) when using optimized lapack.