Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | * Add flatten_structured_array to the namespace | pierregm | 2009-01-10 | 2 | -8/+9 |
| | |||||
* | * Added flatten_structured_arrays | pierregm | 2009-01-09 | 2 | -17/+104 |
| | | | | * Fixed _get_recordarray for nested structures | ||||
* | can't use append an int to a string | Jarrod Millman | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | removed unneeded import | Jarrod Millman | 2009-01-09 | 1 | -2/+0 |
| | |||||
* | switch the order [lib,lib64] --> [lib64,lib] | Jarrod Millman | 2009-01-09 | 1 | -4/+4 |
| | |||||
* | simplification suggested by stefan | Jarrod Millman | 2009-01-09 | 1 | -3/+4 |
| | |||||
* | better default library paths for 64bit arch | Jarrod Millman | 2009-01-09 | 1 | -7/+44 |
| | |||||
* | should be more reliable way to determine what bit platform | Jarrod Millman | 2009-01-09 | 1 | -7/+6 |
| | |||||
* | Tag formatting unit tests as known failures. | David Cournapeau | 2009-01-09 | 1 | -0/+8 |
| | |||||
* | * Remove a debugging print statement. | pierregm | 2009-01-08 | 1 | -4/+0 |
| | |||||
* | * Add __eq__ and __ne__ for support of flexible arrays. | pierregm | 2009-01-08 | 2 | -4/+129 |
| | | | | * Fixed .filled for nested structures | ||||
* | Revert buggy test fix for locale independecce. | David Cournapeau | 2009-01-08 | 1 | -1/+1 |
| | |||||
* | Fix test_print.py function _test_locale_independance() since str(1.2) does ↵ | chanley | 2009-01-08 | 1 | -1/+1 |
| | | | | not use the LC_NUMERIC locale to convert numbers. Fix from Mark Sienkiewicz. | ||||
* | Fix python 2.4 issue. | David Cournapeau | 2009-01-08 | 1 | -8/+9 |
| | |||||
* | Avoid putting things into stderr when errors occurs in f2py wrappers; put ↵ | David Cournapeau | 2009-01-08 | 1 | -4/+6 |
| | | | | all the info in the python error string instead. | ||||
* | * Renamed `torecords` to `toflex`, keeping `torecords` as an alias | pierregm | 2009-01-07 | 2 | -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 does | pierregm | 2009-01-07 | 2 | -4/+55 |
| | |||||
* | * Bugfix #961 | pierregm | 2009-01-06 | 1 | -29/+32 |
| | |||||
* | Use new-style classes with multiple-inheritance to address bug in IronPython. | Stefan van der Walt | 2009-01-06 | 4 | -9/+9 |
| | |||||
* | *moved the printing templates out of MaskedArray.__repr__ | pierregm | 2009-01-05 | 1 | -31/+32 |
| | |||||
* | * adapted default_fill_value for flexible datatype | pierregm | 2009-01-04 | 2 | -12/+62 |
| | | | | * fixed max/minimum_fill_value for flexible datatype | ||||
* | Revert md5 change: hashlib.md5 is not a drop-in replacement for md5. | David Cournapeau | 2009-01-04 | 1 | -7/+1 |
| | |||||
* | Do not use popen* but subprocess.Popen instead. | David Cournapeau | 2009-01-04 | 3 | -9/+16 |
| | |||||
* | Do not import md5 on python >= 2.6; use hashlib instead. | David Cournapeau | 2009-01-04 | 1 | -1/+7 |
| | |||||
* | add default include dir for Fedora/Red Hat (see SciPy ticket 817) | Jarrod Millman | 2009-01-01 | 1 | -1/+2 |
| | |||||
* | Remove the following deprecated items from numpy.testing: | Alan McIntyre | 2008-12-31 | 6 | -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 reindent | Jarrod Millman | 2008-12-31 | 20 | -80/+78 |
| | |||||
* | Fix #951: make tests to clean temp files properly | Pauli Virtanen | 2008-12-31 | 2 | -0/+7 |
| | |||||
* | Do not use dict for reference: hashing on scalar arrays does not work as I ↵ | David Cournapeau | 2008-12-30 | 1 | -21/+17 |
| | | | | expected. | ||||
* | complex scalar arrays cannot be created from real/imag args: wrap init ↵ | David Cournapeau | 2008-12-30 | 1 | -9/+9 |
| | | | | values in a complex. | ||||
* | Fix typo. | David Cournapeau | 2008-12-30 | 1 | -1/+1 |
| | |||||
* | Fix typo. | David Cournapeau | 2008-12-30 | 1 | -1/+1 |
| | |||||
* | More fixes for print tests. | David Cournapeau | 2008-12-30 | 1 | -5/+13 |
| | |||||
* | Fix some more redirected output print tests. | David Cournapeau | 2008-12-30 | 1 | -16/+2 |
| | |||||
* | Fix more formatting tests on win32. | David Cournapeau | 2008-12-30 | 1 | -10/+7 |
| | |||||
* | Hardcode reference for inf/nan-involved values. | David Cournapeau | 2008-12-30 | 1 | -2/+9 |
| | |||||
* | Special case float tests on windows: python 2.5 and below have >=3 digits in ↵ | David Cournapeau | 2008-12-30 | 1 | -2/+10 |
| | | | | the exp. | ||||
* | Fix typo in test. | David Cournapeau | 2008-12-30 | 1 | -1/+1 |
| | |||||
* | Use np.inf instead of float('inf'), as the later does not work on windows ↵ | David Cournapeau | 2008-12-30 | 1 | -4/+4 |
| | | | | for python < 2.6. | ||||
* | Merged revisions 6247-6249 via svnmerge from | David Cournapeau | 2008-12-30 | 1 | -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 Cournapeau | 2008-12-30 | 1 | -2/+16 |
| | | |||||
| * | Refactor a bit redirected output print test. | David Cournapeau | 2008-12-30 | 1 | -31/+20 |
| | | |||||
| * | Handle 1e10 specially, as it is the limit where exp notation is shorter than ↵ | David Cournapeau | 2008-12-30 | 1 | -2/+16 |
| | | | | | | | | decimal for single precision, but not for double (python native one). | ||||
| * | Enable the tp_print function for float and complex types. | David Cournapeau | 2008-12-30 | 1 | -0/+8 |
| | | |||||
| * | Merged revisions 6244 via svnmerge from | David Cournapeau | 2008-12-30 | 1 | -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 Cournapeau | 2008-12-30 | 1 | -0/+1 |
| | | | | | | | | comparing it. | ||||
| * | Merged revisions 6240-6241 via svnmerge from | David Cournapeau | 2008-12-30 | 1 | -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 Cournapeau | 2008-12-30 | 1 | -0/+25 |
| | | |||||
* | | Add tests for print of float types. | David Cournapeau | 2008-12-30 | 1 | -0/+24 |
| | | |||||
| * | Start working on tp_print implementation for scalar types: add the C functions. | David Cournapeau | 2008-12-30 | 1 | -0/+40 |
| | |