summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Collapse)AuthorAgeFilesLines
* * Add flatten_structured_array to the namespacepierregm2009-01-102-8/+9
|
* * Added flatten_structured_arrayspierregm2009-01-092-17/+104
| | | | * Fixed _get_recordarray for nested structures
* can't use append an int to a stringJarrod Millman2009-01-091-1/+1
|
* removed unneeded importJarrod Millman2009-01-091-2/+0
|
* switch the order [lib,lib64] --> [lib64,lib] Jarrod Millman2009-01-091-4/+4
|
* simplification suggested by stefanJarrod Millman2009-01-091-3/+4
|
* better default library paths for 64bit archJarrod Millman2009-01-091-7/+44
|
* should be more reliable way to determine what bit platformJarrod Millman2009-01-091-7/+6
|
* Tag formatting unit tests as known failures.David Cournapeau2009-01-091-0/+8
|
* * Remove a debugging print statement.pierregm2009-01-081-4/+0
|
* * Add __eq__ and __ne__ for support of flexible arrays.pierregm2009-01-082-4/+129
| | | | * Fixed .filled for nested structures
* Revert buggy test fix for locale independecce.David Cournapeau2009-01-081-1/+1
|
* Fix test_print.py function _test_locale_independance() since str(1.2) does ↵chanley2009-01-081-1/+1
| | | | not use the LC_NUMERIC locale to convert numbers. Fix from Mark Sienkiewicz.
* Fix python 2.4 issue.David Cournapeau2009-01-081-8/+9
|
* Avoid putting things into stderr when errors occurs in f2py wrappers; put ↵David Cournapeau2009-01-081-4/+6
| | | | all the info in the python error string instead.
* * Renamed `torecords` to `toflex`, keeping `torecords` as an aliaspierregm2009-01-072-11/+88
| | | | | * Introduced `fromflex`, to reconstruct a masked_array from the output of `toflex` (can’t `use fromrecords` as it would clash with `numpy.ma.mrecords.fromrecords`) * Fixed a bug in MaskedBinaryOperation (#979) (wrong array broadcasting)
* * Fixed iadd/isub/imul when the base array has no mask but the other array doespierregm2009-01-072-4/+55
|
* * Bugfix #961pierregm2009-01-061-29/+32
|
* Use new-style classes with multiple-inheritance to address bug in IronPython.Stefan van der Walt2009-01-064-9/+9
|
* *moved the printing templates out of MaskedArray.__repr__pierregm2009-01-051-31/+32
|
* * adapted default_fill_value for flexible datatypepierregm2009-01-042-12/+62
| | | | * fixed max/minimum_fill_value for flexible datatype
* Revert md5 change: hashlib.md5 is not a drop-in replacement for md5.David Cournapeau2009-01-041-7/+1
|
* Do not use popen* but subprocess.Popen instead.David Cournapeau2009-01-043-9/+16
|
* Do not import md5 on python >= 2.6; use hashlib instead.David Cournapeau2009-01-041-1/+7
|
* add default include dir for Fedora/Red Hat (see SciPy ticket 817)Jarrod Millman2009-01-011-1/+2
|
* Remove the following deprecated items from numpy.testing:Alan McIntyre2008-12-316-1031/+67
| | | | | | | | | | | | | | | - ParametricTestCase - The following arguments from numpy.testing.Tester.test(): level, verbosity, all, sys_argv, testcase_pattern - Path manipulation functions: set_package_path, set_local_path, restore_path - NumpyTestCase, NumpyTest Also separated testing parameter setup from NoseTester.test into NoseTester.prepare_test_args for use in a utility script for valgrind testing (see NumPy ticket #784).
* ran reindentJarrod Millman2008-12-3120-80/+78
|
* Fix #951: make tests to clean temp files properlyPauli Virtanen2008-12-312-0/+7
|
* Do not use dict for reference: hashing on scalar arrays does not work as I ↵David Cournapeau2008-12-301-21/+17
| | | | expected.
* complex scalar arrays cannot be created from real/imag args: wrap init ↵David Cournapeau2008-12-301-9/+9
| | | | values in a complex.
* Fix typo.David Cournapeau2008-12-301-1/+1
|
* Fix typo.David Cournapeau2008-12-301-1/+1
|
* More fixes for print tests.David Cournapeau2008-12-301-5/+13
|
* Fix some more redirected output print tests.David Cournapeau2008-12-301-16/+2
|
* Fix more formatting tests on win32.David Cournapeau2008-12-301-10/+7
|
* Hardcode reference for inf/nan-involved values.David Cournapeau2008-12-301-2/+9
|
* Special case float tests on windows: python 2.5 and below have >=3 digits in ↵David Cournapeau2008-12-301-2/+10
| | | | the exp.
* Fix typo in test.David Cournapeau2008-12-301-1/+1
|
* Use np.inf instead of float('inf'), as the later does not work on windows ↵David Cournapeau2008-12-301-4/+4
| | | | for python < 2.6.
* Merged revisions 6247-6249 via svnmerge from David Cournapeau2008-12-301-33/+50
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://svn.scipy.org/svn/numpy/branches/fix_float_format ........ r6247 | cdavid | 2008-12-30 13:41:37 +0900 (Tue, 30 Dec 2008) | 1 line Handle 1e10 specially, as it is the limit where exp notation is shorter than decimal for single precision, but not for double (python native one). ........ r6248 | cdavid | 2008-12-30 13:47:38 +0900 (Tue, 30 Dec 2008) | 1 line Refactor a bit redirected output print test. ........ r6249 | cdavid | 2008-12-30 13:49:31 +0900 (Tue, 30 Dec 2008) | 1 line Fix test for single precision print. ........
| * Fix test for single precision print.David Cournapeau2008-12-301-2/+16
| |
| * Refactor a bit redirected output print test.David Cournapeau2008-12-301-31/+20
| |
| * Handle 1e10 specially, as it is the limit where exp notation is shorter than ↵David Cournapeau2008-12-301-2/+16
| | | | | | | | decimal for single precision, but not for double (python native one).
| * Enable the tp_print function for float and complex types.David Cournapeau2008-12-301-0/+8
| |
| * Merged revisions 6244 via svnmerge from David Cournapeau2008-12-301-0/+1
| |\ | |/ |/| | | | | | | | | | | | | | | http://svn.scipy.org/svn/numpy/trunk ........ r6244 | cdavid | 2008-12-30 13:20:48 +0900 (Tue, 30 Dec 2008) | 1 line Fix test for print: forgot to make sure the value is a float before comparing it. ........
* | Fix test for print: forgot to make sure the value is a float before ↵David Cournapeau2008-12-301-0/+1
| | | | | | | | comparing it.
| * Merged revisions 6240-6241 via svnmerge from David Cournapeau2008-12-301-0/+49
| |\ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | http://svn.scipy.org/svn/numpy/trunk ........ r6240 | cdavid | 2008-12-30 12:48:11 +0900 (Tue, 30 Dec 2008) | 1 line Add tests for print of float types. ........ r6241 | cdavid | 2008-12-30 12:56:54 +0900 (Tue, 30 Dec 2008) | 1 line Add print tests for complex types. ........
* | Add print tests for complex types.David Cournapeau2008-12-301-0/+25
| |
* | Add tests for print of float types.David Cournapeau2008-12-301-0/+24
| |
| * Start working on tp_print implementation for scalar types: add the C functions.David Cournapeau2008-12-301-0/+40
| |