summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Do not use dict for reference: hashing on scalar arrays does not work as I ex...David Cournapeau2008-12-301-21/+17
* complex scalar arrays cannot be created from real/imag args: wrap init values...David Cournapeau2008-12-301-9/+9
* 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
* 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 for...David Cournapeau2008-12-301-4/+4
* Merged revisions 6247-6249 via svnmerge from David Cournapeau2008-12-301-33/+50
|\
| * 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
| * 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
| |\ | |/ |/|
* | Fix test for print: forgot to make sure the value is a float before comparing...David Cournapeau2008-12-301-0/+1
| * Merged revisions 6240-6241 via svnmerge from David Cournapeau2008-12-301-0/+49
| |\ | |/ |/|
* | 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
| * Merged revisions 6236-6238 via svnmerge from David Cournapeau2008-12-301-4/+75
| |\ | |/ |/|
* | Clearer error messages for formatting failures.David Cournapeau2008-12-291-8/+14
* | Add test for real float types locale independance.David Cournapeau2008-12-291-0/+50
* | Add nan/inf tests for formatting.David Cournapeau2008-12-291-0/+15
* | Merged revisions 6233-6234 via svnmerge from David Cournapeau2008-12-291-21/+24
|\ \ | |/
| * Fix formatting tests: cfloat and cdouble as well as np.float and np.double ar...David Cournapeau2008-12-291-2/+2
| * Use parametric tests for format tests so that it is clearer which type is fai...David Cournapeau2008-12-291-21/+24
| * Remove unused macros.David Cournapeau2008-12-291-6/+0
| * Use double format string for long double if necessary in scalar types rep...David Cournapeau2008-12-291-0/+6
| * Modify NumPyOS_ascii_format* macro so that a cast to a different type tha...David Cournapeau2008-12-291-5/+9
| * Define FORCE_NO_LONG_DOUBLE_FORMATTING on win32.David Cournapeau2008-12-292-0/+12
| * Fix usage of NumPyOS_ascii_format* in scalar array repr/str methods.David Cournapeau2008-12-291-13/+25
| * Improve NumPyOS_ascii_format: handle nan and inf.David Cournapeau2008-12-291-211/+76
| * Forgot to add npy_format.c.David Cournapeau2008-12-291-0/+408
| * Use custom formatting functions.David Cournapeau2008-12-292-2/+29
|/
* Revert formatting changes: ascii_formatd only works for double, so we can't u...David Cournapeau2008-12-283-79/+18
* Use ugly hack for mingw long double pb with complex format function as well.David Cournapeau2008-12-271-3/+3
* Try ugly hack to circumvent long double brokenness with mingw.David Cournapeau2008-12-271-1/+23
* Do not use PyOS_ascii_formatd, as it does not handle long double correctly.David Cournapeau2008-12-271-4/+4
* Remove undef of removed macro.David Cournapeau2008-12-271-4/+0
* More formatting fixes.David Cournapeau2008-12-271-4/+3
* Do not define FMTR and FMTI macros, as those are already defined on some plat...David Cournapeau2008-12-271-8/+2
* Fix formatting.David Cournapeau2008-12-271-18/+18
* Include config.h before our C99 math compat layer.David Cournapeau2008-12-271-0/+1
* Include umath_funcs_c99 in multiarray so that we can use isinf and co macros.David Cournapeau2008-12-272-1/+3
* Finish formatting fixes for float scalar arrays.David Cournapeau2008-12-271-1/+25
* More work on formatting float.David Cournapeau2008-12-271-5/+18
* Fix formatting for purely imaginary complex numbers.David Cournapeau2008-12-271-1/+3