summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
...
* Ugly hack to workaround some bug in mingw to make VS 2003 work with gfortran.David Cournapeau2009-03-113-1/+27
* Add a function to get MSVC version.David Cournapeau2009-03-111-0/+8
* Remove pzero/pinf init functions, and use NPY_* macros instead.David Cournapeau2009-03-111-42/+4
* Use NPY_NAN instead of computing a nan - also fix #920, since NPY_NAN is a po...David Cournapeau2009-03-111-3/+2
* Add a regression test to check our nan is a positive nan.David Cournapeau2009-03-111-0/+4
* Do not use NAN (GNU specific extension) but our portable NPY_NAN instead.David Cournapeau2009-03-111-1/+2
* Do not pull the whole ndarrayobject header in npy math, to avoid unused _impo...David Cournapeau2009-03-111-1/+0
* Define NPY_INLINE as a (public) macro for portable inline, and use it in npy_...David Cournapeau2009-03-112-4/+10
* Move bit-width types to npy_common, so that we can use it in pure C code (cod...David Cournapeau2009-03-112-692/+694
* Define inline to something we can use internally.David Cournapeau2009-03-111-0/+11
* Add check for (C) inline.David Cournapeau2009-03-112-0/+31
* Change complex version of sign to return nan for nan input. Fix test toCharles Harris2009-03-102-3/+4
* fix remaining tests to reflect new behavior of sign(nan)Charles Harris2009-03-101-2/+2
* Fix a test failure due to changes in the sign ufunc.Charles Harris2009-03-101-1/+1
* Change behavior of sign ufunc so it returns nan for nan instead of zero. ThisCharles Harris2009-03-101-2/+2
* test_umath: remove unnecessary test from #1008 test setPauli Virtanen2009-03-101-1/+1
* Fix ticket #1048.Charles Harris2009-03-102-21/+22
* Set formatting references for nan/inf complexes depending on the python versi...David Cournapeau2009-03-101-18/+38
* Fix wrongly inserted * character for the real part of complex number with nan...David Cournapeau2009-03-101-7/+2
* Fix C99 declaration style.David Cournapeau2009-03-101-1/+2
* Fix double comma syntax error.David Cournapeau2009-03-101-1/+1
* Remove NumpyOS_init, obsoleted by our NPY_NAN and co macros.David Cournapeau2009-03-102-45/+0
* Fix wrong cast for zero macros.David Cournapeau2009-03-101-2/+2
* Add macros for positive and negative inf.David Cournapeau2009-03-104-13/+34
* Use functions instead of anonymous union that some compilers don't like.David Cournapeau2009-03-101-7/+15
* Add portable equivalent of NAN/INFINITY.David Cournapeau2009-03-101-0/+18
* Revert adding '*' character for nan and inf before the imaginary tag for pyth...David Cournapeau2009-03-101-0/+15
* numscons build for umath_tests.David Cournapeau2009-03-101-1/+8
* Fixing #1045: don't output * in between of inf/nan and jPauli Virtanen2009-03-102-6/+30
* Fix nan/inf handling when formatting complex numbers.David Cournapeau2009-03-101-13/+41
* Fixed #950: fix bug in dotblas 0D input detection.Pauli Virtanen2009-03-102-0/+21
* Fixed #836: ensure z**3 = z*z*z, z**2 == z*z and z**1 == z for complex pow+inf.Pauli Virtanen2009-03-092-1/+31
* Fixed #745: make assert_array_almost_equal work with object arraysPauli Virtanen2009-03-092-2/+11
* Apply patch from #953 to fix two doctests.David Cournapeau2009-03-091-2/+2
* Fix docstring for amax/amin.David Cournapeau2009-03-091-4/+4
* Fix and re-enable regression test #947.David Cournapeau2009-03-091-2/+1
* Fix #947.David Cournapeau2009-03-091-1/+7
* Use a failure label when _array_fromobject fails.David Cournapeau2009-03-091-2/+5
* Add regression tesst for #947.David Cournapeau2009-03-091-0/+5
* Applied Anand's patch fixing Ticket #986 regarding the domain of the Von Mise...dhuard2009-03-092-3/+22
* BUG: when a new type is required, and the fast clip function is updated, make...David Cournapeau2009-03-091-0/+3
* Fix import issue.David Cournapeau2009-03-091-1/+1
* Re-enable long double repr tests, as long double formatting has been fixed on...David Cournapeau2009-03-091-2/+0
* Sort index of find_duplicated before testing, because the exact order is unde...David Cournapeau2009-03-091-17/+14
* Remove dead code.David Cournapeau2009-03-091-1/+0
* Re-enable generalized ufunc tests on win32, since the corresponding module no...David Cournapeau2009-03-091-11/+0
* Do not hardcode string for savetxt testing, as the exact representation depen...David Cournapeau2009-03-091-5/+6
* BUG: Rewrite test_gzip_loadtxt to avoid NamedTemporaryFile which is unusable...David Cournapeau2009-03-091-9/+30
* Close file handle in loadtxt if we opened the file ourselves.David Cournapeau2009-03-091-45/+51
* Make the type cast clearer + comment.David Cournapeau2009-03-091-1/+5