summaryrefslogtreecommitdiff
path: root/numpy/core/src/arrayobject.c
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-10-05 08:28:42 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-10-05 08:28:42 +0000
commit03287a66b449cc8fa8b1957fbb85f575c0e4a821 (patch)
treeccaba8c6f96b3ac715d5ad56ef3b34093778d9a5 /numpy/core/src/arrayobject.c
parenta0e082a087e9667e3805d3be859958a292e8f336 (diff)
parent50d1e8edc57b51a42cd82c9ef74a8e799ed36801 (diff)
downloadnumpy-03287a66b449cc8fa8b1957fbb85f575c0e4a821.tar.gz
Merged revisions 5737-5912 via svnmerge from
http://svn.scipy.org/svn/numpy/branches/clean_math_config ................ r5738 | cdavid | 2008-09-01 21:18:52 +0900 (Mon, 01 Sep 2008) | 3 lines Initialized merge tracking via "svnmerge" with revisions "1-5737" from http://svn.scipy.org/svn/numpy/trunk ................ r5756 | cdavid | 2008-09-04 22:49:42 +0900 (Thu, 04 Sep 2008) | 1 line Add a math_c99 compatibility module. ................ r5757 | cdavid | 2008-09-04 22:58:47 +0900 (Thu, 04 Sep 2008) | 1 line Add float and long double functions (C99). ................ r5758 | cdavid | 2008-09-04 23:35:51 +0900 (Thu, 04 Sep 2008) | 1 line Use code generator for c99_math.c ................ r5759 | cdavid | 2008-09-04 23:37:29 +0900 (Thu, 04 Sep 2008) | 1 line move C99 math stuff to a .src file. ................ r5760 | cdavid | 2008-09-04 23:40:00 +0900 (Thu, 04 Sep 2008) | 1 line Add expm1 function in c99 compat module. ................ r5761 | cdavid | 2008-09-04 23:45:33 +0900 (Thu, 04 Sep 2008) | 4 lines Use C99 math compatibility module. Completely broken for now, needs to update the configuration stage. ................ r5762 | cdavid | 2008-09-04 23:55:01 +0900 (Thu, 04 Sep 2008) | 66 lines Merged revisions 5738-5761 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5739 | cdavid | 2008-09-01 21:50:46 +0900 (Mon, 01 Sep 2008) | 1 line Disable memmap test which crashes nose tests on cygwin. ........ r5740 | cdavid | 2008-09-01 22:07:30 +0900 (Mon, 01 Sep 2008) | 2 lines Fix unused variable warning in object_arrtype_new. ........ r5741 | cdavid | 2008-09-02 15:59:43 +0900 (Tue, 02 Sep 2008) | 5 lines Fix regression test #771 on 64 bits architecture. The test assumed an item was 4 bytes. Use itemsize instead of harcoding 4 bytes per item. ........ r5742 | jarrod.millman | 2008-09-03 05:13:17 +0900 (Wed, 03 Sep 2008) | 2 lines pulling out testing docs from distutils docs ........ r5743 | jarrod.millman | 2008-09-03 05:32:38 +0900 (Wed, 03 Sep 2008) | 2 lines reindenting prior to release ........ r5745 | jarrod.millman | 2008-09-03 08:52:37 +0900 (Wed, 03 Sep 2008) | 2 lines trunk is open for 1.3 development ........ r5748 | alan.mcintyre | 2008-09-03 14:10:39 +0900 (Wed, 03 Sep 2008) | 3 lines Fix __init__.py boilerplate example in DISTUTILS.txt, and moved content from SciPy wiki entry on testing guidelines to TESTS.txt. ........ r5749 | alan.mcintyre | 2008-09-03 15:11:28 +0900 (Wed, 03 Sep 2008) | 3 lines Updated TESTS.txt to actually be ReST. Capitalization nitpickery in DISTUTILS.txt: 'Scipy' -> 'SciPy' ........ r5750 | alan.mcintyre | 2008-09-03 16:49:59 +0900 (Wed, 03 Sep 2008) | 2 lines Added section discussing using subclassing to create similar tests. ........ r5751 | pierregm | 2008-09-04 01:48:52 +0900 (Thu, 04 Sep 2008) | 1 line docstring update ........ r5752 | cdavid | 2008-09-04 01:54:37 +0900 (Thu, 04 Sep 2008) | 1 line Start a nep for warn-free numpy build. ........ r5753 | cdavid | 2008-09-04 22:31:24 +0900 (Thu, 04 Sep 2008) | 1 line Update the warnfix nep. ........ r5754 | cdavid | 2008-09-04 22:36:53 +0900 (Thu, 04 Sep 2008) | 1 line Start a nep for cleaning the math configuration. ........ r5755 | cdavid | 2008-09-04 22:49:01 +0900 (Thu, 04 Sep 2008) | 1 line Update clean math config nep. ........ ................ r5763 | cdavid | 2008-09-05 00:12:45 +0900 (Fri, 05 Sep 2008) | 1 line put the setup code to check for match cap in a separate function. ................ r5764 | cdavid | 2008-09-05 00:31:57 +0900 (Fri, 05 Sep 2008) | 1 line Check for non-mandatory, basic, double functions. ................ r5765 | cdavid | 2008-09-05 00:32:29 +0900 (Fri, 05 Sep 2008) | 1 line Do not build math_c99.c, only set it as a dependency. ................ r5766 | cdavid | 2008-09-05 00:39:38 +0900 (Fri, 05 Sep 2008) | 5 lines Manually generate math_c99.c I did not find a way to generate math_c99.c from math_c99.src with distutils, so let's include the generated file for now. ................ r5767 | cdavid | 2008-09-05 01:29:09 +0900 (Fri, 05 Sep 2008) | 1 line Keep the cruft for compatibility for now. ................ r5773 | cdavid | 2008-09-05 12:12:37 +0900 (Fri, 05 Sep 2008) | 1 line Check for all float/long double C99 math funcs explicitely. ................ r5774 | cdavid | 2008-09-05 12:15:25 +0900 (Fri, 05 Sep 2008) | 1 line Use calling version of check func. ................ r5775 | cdavid | 2008-09-05 12:19:04 +0900 (Fri, 05 Sep 2008) | 1 line Use the way formely used by setup to set backward-compatible defines. ................ r5776 | cdavid | 2008-09-05 14:37:06 +0900 (Fri, 05 Sep 2008) | 1 line Tell vim to recognize umathmodule.c.src as a C file. ................ r5777 | cdavid | 2008-09-05 14:44:39 +0900 (Fri, 05 Sep 2008) | 1 line Add fmod and modf as mandatory functions. ................ r5778 | cdavid | 2008-09-05 14:49:32 +0900 (Fri, 05 Sep 2008) | 1 line Add frexp and ldexp as the functions to lookf for C99 versions. ................ r5779 | cdavid | 2008-09-05 15:11:26 +0900 (Fri, 05 Sep 2008) | 1 line Add a check_funcs_once function to speed up func checks. ................ r5780 | cdavid | 2008-09-05 15:21:18 +0900 (Fri, 05 Sep 2008) | 1 line Use check_funcs_once to speed-up configuration on sane platforms. ................ r5781 | cdavid | 2008-09-05 15:25:57 +0900 (Fri, 05 Sep 2008) | 1 line Speed up the math configuration using check_funcs_once. ................ r5782 | cdavid | 2008-09-05 15:34:55 +0900 (Fri, 05 Sep 2008) | 1 line Fix indentation. ................ r5783 | cdavid | 2008-09-05 15:47:10 +0900 (Fri, 05 Sep 2008) | 1 line Remove HAVE_FLOAT_FUNCS, and use function-specific HAVE_ instead. ................ r5784 | cdavid | 2008-09-05 15:47:40 +0900 (Fri, 05 Sep 2008) | 1 line Remove HAVE_INVERSE_* for inverse hyperbolic funcs: not needed anymore. ................ r5785 | cdavid | 2008-09-05 15:49:48 +0900 (Fri, 05 Sep 2008) | 1 line Check for isnan and isinf. ................ r5786 | cdavid | 2008-09-05 15:59:44 +0900 (Fri, 05 Sep 2008) | 1 line Do not check for the same functions twice. ................ r5787 | cdavid | 2008-09-05 16:00:12 +0900 (Fri, 05 Sep 2008) | 1 line ldexp is a mandatory function. ................ r5812 | cdavid | 2008-09-13 16:04:41 +0900 (Sat, 13 Sep 2008) | 105 lines Merged revisions 5762-5811 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5768 | ptvirtan | 2008-09-05 03:04:35 +0900 (Fri, 05 Sep 2008) | 1 line Ufunc docstrings: show the 'out' arguments in a more standard way ........ r5769 | alan.mcintyre | 2008-09-05 03:23:48 +0900 (Fri, 05 Sep 2008) | 4 lines Replaced numpy.testing.decorators.skipknownfailure with knownfailureif, which allows flagging tests as known failures rather than skips. Updated test_umath to use knownfailureif. ........ r5770 | alan.mcintyre | 2008-09-05 06:13:29 +0900 (Fri, 05 Sep 2008) | 2 lines Renamed classes to conform to PEP 8. ........ r5771 | alan.mcintyre | 2008-09-05 07:06:01 +0900 (Fri, 05 Sep 2008) | 2 lines Fix link to example.py. ........ r5772 | alan.mcintyre | 2008-09-05 10:20:09 +0900 (Fri, 05 Sep 2008) | 2 lines Remove debugging code. ........ r5788 | dhuard | 2008-09-05 22:58:00 +0900 (Fri, 05 Sep 2008) | 1 line Applied patch from R. May fixing ticket #905 (loadtxt). Fixed other bug occurring when both usecols and converters are provided. Added related regression tests. ........ r5789 | oliphant | 2008-09-05 23:06:02 +0900 (Fri, 05 Sep 2008) | 1 line Add final date-time proposal. ........ r5791 | pierregm | 2008-09-06 08:38:44 +0900 (Sat, 06 Sep 2008) | 1 line * fixed deepcopy of masked arrays (bug #906) ........ r5793 | cdavid | 2008-09-07 16:16:28 +0900 (Sun, 07 Sep 2008) | 8 lines scons command: fix one more issue related to build dir. The distutils installation directory relative to the scons build directory was not always computed right. The relative position on the fs does not depend on the source directory (in out-of-place builds), but on the package *name* translated to a directly only. ........ r5796 | pearu | 2008-09-09 19:55:30 +0900 (Tue, 09 Sep 2008) | 1 line Fix typo. ........ r5797 | stefan | 2008-09-09 22:38:34 +0900 (Tue, 09 Sep 2008) | 2 lines FIX: Loadtxt raises on empty input (closes #908). ........ r5799 | alan.mcintyre | 2008-09-10 02:48:47 +0900 (Wed, 10 Sep 2008) | 2 lines Removed unused imports. ........ r5800 | pierregm | 2008-09-10 03:25:15 +0900 (Wed, 10 Sep 2008) | 1 line * make sure that minimum & maximum actually return a MaskedArray ........ r5803 | pierregm | 2008-09-12 04:54:31 +0900 (Fri, 12 Sep 2008) | 1 line * fixed view for MaskedArrays w/ flexible dtype ........ r5804 | jarrod.millman | 2008-09-13 04:20:26 +0900 (Sat, 13 Sep 2008) | 2 lines FIX: broken links ........ r5805 | jarrod.millman | 2008-09-13 04:23:20 +0900 (Sat, 13 Sep 2008) | 2 lines FIX: broken links ........ r5806 | alan.mcintyre | 2008-09-13 11:53:53 +0900 (Sat, 13 Sep 2008) | 2 lines Fix failing doctests. ........ r5807 | alan.mcintyre | 2008-09-13 11:56:33 +0900 (Sat, 13 Sep 2008) | 2 lines Remove unused imports. ........ r5808 | alan.mcintyre | 2008-09-13 12:40:57 +0900 (Sat, 13 Sep 2008) | 7 lines Removed unused/duplicate imports. Removed repeated members of __all__. Fixed reference to undefined "out" in functions.py:take function. Fixed references to undefined "N" in functions.py. Rewrapped lines to conform to PEP8. Fixed references to undefined FPE_* constants (from numpy) in util.py. ........ r5809 | cdavid | 2008-09-13 15:03:30 +0900 (Sat, 13 Sep 2008) | 6 lines Fix cygwin compilation Recent version of binutils (2.18.50) do not accept 4 bytes operand for some opcodes like fnstsw (which always expected a 2 bytes operand). Replace the type of the argument from unsigned 2 bytes to unsigned 4 bytes unsigned integer. ........ r5810 | cdavid | 2008-09-13 15:27:46 +0900 (Sat, 13 Sep 2008) | 1 line Tag ctypes load library tests as known failures on cygwin. ........ ................ r5813 | cdavid | 2008-09-13 16:16:32 +0900 (Sat, 13 Sep 2008) | 1 line Detect declaration of isnan and co only. ................ r5814 | cdavid | 2008-09-13 16:25:51 +0900 (Sat, 13 Sep 2008) | 1 line Clean IEEE handling: define them as macro. ................ r5815 | cdavid | 2008-09-13 16:27:25 +0900 (Sat, 13 Sep 2008) | 1 line Update generated math_c99 compat module. ................ r5816 | cdavid | 2008-09-13 16:28:08 +0900 (Sat, 13 Sep 2008) | 1 line Remove trailing spaces. ................ r5817 | cdavid | 2008-09-13 16:30:07 +0900 (Sat, 13 Sep 2008) | 1 line remove unused _isnan.c ................ r5818 | cdavid | 2008-09-13 16:48:29 +0900 (Sat, 13 Sep 2008) | 1 line Fix typo in setup.py ................ r5819 | cdavid | 2008-09-13 17:08:16 +0900 (Sat, 13 Sep 2008) | 1 line Do not depend on _isnan.c. ................ r5820 | cdavid | 2008-09-13 17:09:02 +0900 (Sat, 13 Sep 2008) | 1 line Rename signbit replacement to signbit_d to avoid clash between macro and function. ................ r5836 | cdavid | 2008-09-20 17:22:25 +0900 (Sat, 20 Sep 2008) | 1 line Include Python.h before math.h for declaration tests in mathlib. ................ r5837 | cdavid | 2008-09-20 17:47:19 +0900 (Sat, 20 Sep 2008) | 1 line Remove the generated math_c99.c file from svn; generate it automatically from setup.py. ................ r5838 | cdavid | 2008-09-20 18:48:01 +0900 (Sat, 20 Sep 2008) | 1 line Test for MSVC, because we will need to special case for this F***** compiler once again. ................ r5839 | cdavid | 2008-09-20 19:05:52 +0900 (Sat, 20 Sep 2008) | 1 line Assume mandatory funcs available with MSVC. ................ r5840 | cdavid | 2008-09-20 19:18:59 +0900 (Sat, 20 Sep 2008) | 1 line Fix typo in CPP define. ................ r5841 | cdavid | 2008-09-20 19:49:01 +0900 (Sat, 20 Sep 2008) | 1 line Undef macro when using replacement functions in math_c99 module. ................ r5842 | cdavid | 2008-09-20 19:51:35 +0900 (Sat, 20 Sep 2008) | 1 line Forgot to define M_PI if not available. ................ r5843 | cdavid | 2008-09-20 19:53:27 +0900 (Sat, 20 Sep 2008) | 1 line Forgot to define float/long double version of log1p if not available on the platform. ................ r5844 | cdavid | 2008-09-20 20:39:20 +0900 (Sat, 20 Sep 2008) | 78 lines Merged revisions 5812-5843 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5821 | alan.mcintyre | 2008-09-14 03:04:57 +0900 (Sun, 14 Sep 2008) | 3 lines Removed unused imports. Standardize NumPy import as "import numpy as np". ........ r5822 | alan.mcintyre | 2008-09-14 03:10:48 +0900 (Sun, 14 Sep 2008) | 6 lines Rewrapped __all__ definition to conform to PEP8. Standardize NumPy import as "import numpy as np". Removed unused imports. Fixed undefined reference to ndarray (should be np.ndarray). Fixed undefined references to exp (should be math.exp). ........ r5823 | alan.mcintyre | 2008-09-14 03:15:38 +0900 (Sun, 14 Sep 2008) | 3 lines Removed unused imports. Fixed undefined reference to "getpackage" (from nose.util). ........ r5824 | pierregm | 2008-09-14 06:17:09 +0900 (Sun, 14 Sep 2008) | 1 line MaskedArray.__new__ : make sure that we inherit the _hardmask from data (if any) instead of reverting to default. ........ r5826 | alan.mcintyre | 2008-09-18 12:29:56 +0900 (Thu, 18 Sep 2008) | 4 lines Added documentation for doctests and using the skipif and knownfailureif decorators. Fixed indentation on the last sample snippet in the "__init__.py and setup.py" section. ........ r5827 | alan.mcintyre | 2008-09-18 12:33:15 +0900 (Thu, 18 Sep 2008) | 3 lines Rewrapped __all__ to conform with PEP8. Removed unused imports. ........ r5828 | alan.mcintyre | 2008-09-18 12:33:58 +0900 (Thu, 18 Sep 2008) | 2 lines Removed unused imports. ........ r5829 | alan.mcintyre | 2008-09-18 12:45:53 +0900 (Thu, 18 Sep 2008) | 3 lines Removed unused/redundant imports. PEP8 conformance (only one import per line). ........ r5830 | alan.mcintyre | 2008-09-18 12:57:47 +0900 (Thu, 18 Sep 2008) | 2 lines Removed redundant import. ........ r5831 | pierregm | 2008-09-19 02:51:55 +0900 (Fri, 19 Sep 2008) | 1 line median : fixed a bug in _median1D (there shouldn't have been an axis) ........ r5832 | jarrod.millman | 2008-09-19 03:53:53 +0900 (Fri, 19 Sep 2008) | 2 lines ReSTified an URL ........ r5833 | rkern | 2008-09-19 06:48:57 +0900 (Fri, 19 Sep 2008) | 1 line BUG: Override setuptools' install.run() method to correctly allow 'python setup.py install' to work. ........ r5834 | pierregm | 2008-09-19 12:33:40 +0900 (Fri, 19 Sep 2008) | 1 line * fixing view to recognize dtype and type parameters, for consistency with regular ndarrays. ........ r5835 | pierregm | 2008-09-20 04:43:05 +0900 (Sat, 20 Sep 2008) | 8 lines core: * add dtype to the repr of masked arrays w/ flexible type * prevent __getitem__ to return masked on flexible-type masked array * make sure __str__ returns something sensible for flexible dtype w/ masked fields * simplify the count method mrecords: * fixed a pb with fromrecords when the number of fields cannot be determined from the first element. ........ ................ r5845 | cdavid | 2008-09-21 00:58:44 +0900 (Sun, 21 Sep 2008) | 1 line Remove redundant definition of isnan and co in ufuncobject.h ................ r5846 | cdavid | 2008-09-21 01:00:09 +0900 (Sun, 21 Sep 2008) | 1 line Use a single macro for isnan replacement. ................ r5847 | cdavid | 2008-09-21 01:01:22 +0900 (Sun, 21 Sep 2008) | 1 line Use a single macro for isinf replacement. ................ r5848 | cdavid | 2008-09-21 01:10:53 +0900 (Sun, 21 Sep 2008) | 1 line Move isfinite macro with isinf and isnan. ................ r5849 | cdavid | 2008-09-21 01:11:51 +0900 (Sun, 21 Sep 2008) | 1 line Fix isfinite. ................ r5850 | cdavid | 2008-09-21 01:12:59 +0900 (Sun, 21 Sep 2008) | 1 line Autoconf suggestion is totally bogus: isinf(nan) is false, not true. ................ r5851 | cdavid | 2008-09-21 01:13:48 +0900 (Sun, 21 Sep 2008) | 1 line Define isfinite first, and define isinf in function of isfinite/isnan. ................ r5852 | cdavid | 2008-09-21 01:26:30 +0900 (Sun, 21 Sep 2008) | 6 lines Fix for isfinite on VS 2003. VS 2003 seems to think it is ok to simplify x-x to 0 for float, but this is wrong for NaN and Inf. To alleviate, we force the operation to occur with (x) + (-x). ................ r5853 | cdavid | 2008-09-21 01:56:08 +0900 (Sun, 21 Sep 2008) | 1 line More intrinsics. ................ r5855 | cdavid | 2008-09-21 20:39:08 +0900 (Sun, 21 Sep 2008) | 1 line Handle msvc intrisincs in check_func. ................ r5856 | cdavid | 2008-09-21 20:39:27 +0900 (Sun, 21 Sep 2008) | 1 line Handle msvc intrisincs in check_funcs_once. ................ r5857 | cdavid | 2008-09-21 20:50:32 +0900 (Sun, 21 Sep 2008) | 1 line define -> pragma, stupid mistake. ................ r5858 | cdavid | 2008-09-21 20:54:48 +0900 (Sun, 21 Sep 2008) | 1 line Do not use MSVC workaround anymore, since we now can test for function even when they are intrinsincs. ................ r5861 | cdavid | 2008-09-23 12:48:01 +0900 (Tue, 23 Sep 2008) | 9 lines Merged revisions 5844-5860 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5860 | stefan | 2008-09-23 05:28:00 +0900 (Tue, 23 Sep 2008) | 2 lines Ignore unused converters in `loadtxt`. ........ ................ r5874 | charris | 2008-09-29 08:35:15 +0900 (Mon, 29 Sep 2008) | 4 lines Enhance code_generator to allow continuation lines. Small clarification in arraytypes.inc.src. Practice merging ;) ................ r5882 | cdavid | 2008-09-30 13:40:13 +0900 (Tue, 30 Sep 2008) | 27 lines Merged revisions 5861-5881 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5862 | ptvirtan | 2008-09-24 20:50:38 +0900 (Wed, 24 Sep 2008) | 1 line Fix python2.5 dependency in lookfor ........ r5869 | pierregm | 2008-09-29 02:27:37 +0900 (Mon, 29 Sep 2008) | 3 lines core: * added __rmul and __radd__ * fixed concatenate for flexible-dtype ........ r5878 | ptvirtan | 2008-09-30 02:23:43 +0900 (Tue, 30 Sep 2008) | 1 line Umath tests: remove signed zero check on branch cut for log* as it fails on some platforms. ........ r5879 | pierregm | 2008-09-30 05:24:29 +0900 (Tue, 30 Sep 2008) | 1 line use if ...: raise AssertionError instead of assert ........ r5880 | pierregm | 2008-09-30 05:24:56 +0900 (Tue, 30 Sep 2008) | 1 line replaced assert with self.failUnless ........ ................ r5898 | cdavid | 2008-10-03 16:21:00 +0900 (Fri, 03 Oct 2008) | 1 line Start updating numscons configuration for new math config. ................ r5899 | cdavid | 2008-10-03 16:21:15 +0900 (Fri, 03 Oct 2008) | 1 line Add an help function to check a list of functions in scons build. ................ r5900 | cdavid | 2008-10-03 16:21:31 +0900 (Fri, 03 Oct 2008) | 1 line Fix typo in check_funcs. ................ r5901 | cdavid | 2008-10-03 16:21:46 +0900 (Fri, 03 Oct 2008) | 1 line Check for some optional, C99 double math functions. ................ r5902 | cdavid | 2008-10-03 16:22:02 +0900 (Fri, 03 Oct 2008) | 1 line Check for float/long double C99 functions. ................ r5903 | cdavid | 2008-10-03 16:22:18 +0900 (Fri, 03 Oct 2008) | 1 line Add check for C99 macros related IEEE-754. ................ r5904 | cdavid | 2008-10-03 16:22:34 +0900 (Fri, 03 Oct 2008) | 1 line Remove old configuration checks, supersded by new math config. ................ r5905 | cdavid | 2008-10-03 16:22:57 +0900 (Fri, 03 Oct 2008) | 1 line Generate math_c99.inc in numscons build. ................ r5912 | cdavid | 2008-10-05 16:00:33 +0900 (Sun, 05 Oct 2008) | 39 lines Merged revisions 5882-5911 via svnmerge from http://svn.scipy.org/svn/numpy/trunk ........ r5886 | charris | 2008-10-02 03:05:29 +0900 (Thu, 02 Oct 2008) | 4 lines Make some error messages more informative. Improve error handling. Make continuation lines work. ........ r5887 | charris | 2008-10-02 03:06:04 +0900 (Thu, 02 Oct 2008) | 2 lines Small cleanup to clarify repeated string. ........ r5888 | charris | 2008-10-02 03:08:41 +0900 (Thu, 02 Oct 2008) | 6 lines Cleanup ufunc loops. At this point loops are separated into variable kinds, so there is a fair amount of duplication. I will probably merge loops that look the same in a later commit. There are no changes to current behavior of loops, this will also be changed in later work to deal with nans and such. ........ r5889 | oliphant | 2008-10-03 05:27:17 +0900 (Fri, 03 Oct 2008) | 1 line Fix problem with subclasses of object arrays. ........ r5896 | cdavid | 2008-10-03 15:50:32 +0900 (Fri, 03 Oct 2008) | 1 line Update the minimum version for numscons: had to change to cope with Chuck changes to conv_template.py. ........ r5897 | cdavid | 2008-10-03 15:51:03 +0900 (Fri, 03 Oct 2008) | 1 line Update doall script: take the python version to build binaries from the command line instead of global variable. ........ r5906 | oliphant | 2008-10-04 00:55:52 +0900 (Sat, 04 Oct 2008) | 1 line Fix ticket #925 ........ ................
Diffstat (limited to 'numpy/core/src/arrayobject.c')
0 files changed, 0 insertions, 0 deletions