summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
...
* Fix incorrect output types for some ufuncs.Charles Harris2008-04-221-4/+4
* Scons build: put builders creation into scons_support, and add action strings...David Cournapeau2008-04-212-32/+27
* Do not specify target names for generated code, because it is not needed.David Cournapeau2008-04-211-23/+24
* Expand tab in core scons script.David Cournapeau2008-04-211-3/+3
* Generic loop cleanup. Cut and pasted from template generated file.Charles Harris2008-04-211-194/+274
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-207-28/+27
* Make the object loops tests less susceptiple to reference counting errors.Charles Harris2008-04-201-7/+9
* More clean up the generic object loops.Charles Harris2008-04-201-45/+19
* Cleanup code style in generic ufunc loops.Charles Harris2008-04-201-145/+278
* Add tests for generic ufunct loops preparatory to some code cleanup.Charles Harris2008-04-191-1/+129
* Cleanup white space, fix a spelling, align some comments.Charles Harris2008-04-181-95/+95
* Fast implementation of take [patch by Eric Firing].Stefan van der Walt2008-04-184-20/+172
* Add comments to numerictypes.py about what the 'kind' field of dtypes can becookedm2008-04-181-11/+18
* De-obfuscate some test code.Robert Kern2008-04-171-7/+7
* Test for r5034.Robert Kern2008-04-141-0/+13
* Fix up swap choice for FillWithScalar.Travis Oliphant2008-04-141-1/+1
* Make integers smaller than Long convert strings when possible.Charles Harris2008-04-131-1/+1
* Simplify code in MyPyFloat_AsDouble and MyPyLong_As*.Charles Harris2008-04-131-91/+49
* Reindent. Needs style cleanup too.Charles Harris2008-04-131-1543/+1542
* Remove debugging. Python 2.6 still raises ValueError for bitwise operationsCharles Harris2008-04-111-8/+0
* Fixed #728 scalar coercion problem with mixed types and r_Travis Oliphant2008-04-112-2/+90
* More debugging.Charles Harris2008-04-111-3/+4
* More debugging.Charles Harris2008-04-111-1/+2
* More object casting debugging.Charles Harris2008-04-111-4/+3
* Debugging test for check_object_casting.Charles Harris2008-04-111-0/+7
* Remove test of repr precision for longdouble. This varies between compilers andCharles Harris2008-04-111-2/+0
* Add test for precision of longdouble repr. Need to add tests for all printingCharles Harris2008-04-111-0/+3
* Fix missing format code so longdoubles print with proper precision.Charles Harris2008-04-111-1/+1
* Add functions for str instead of defining them to the same as repr. Reduce reprCharles Harris2008-04-111-11/+37
* Add check for printing complex dtypes, closes #693.Stefan van der Walt2008-04-101-0/+10
* Fix bound in error message. Patch from Andrew Straw, fixes ticket 732.Charles Harris2008-04-091-2/+2
* Add test for string to float conversions of various types.Charles Harris2008-04-091-0/+9
* Apply patch supplied by philbinj to fix ticket 630.Charles Harris2008-04-091-0/+13
* Regression test for ticket #714.Stefan van der Walt2008-04-091-0/+5
* Improve empty_like and zeros_like to respect sub-type.Travis Oliphant2008-04-091-27/+29
* Documented and tested new behaviour of std and var on complex numbers. Added...aarchiba2008-04-073-16/+37
* Remove redundant check because PyObject_TypeCheck already includes an exact c...Travis Oliphant2008-04-061-3/+1
* Factor out matrix_multiply from defmatrix. Based on a patch byStefan van der Walt2008-04-061-34/+78
* Add tests for ddof parameter in var/std [patch by Anne Archibald].Stefan van der Walt2008-04-061-0/+15
* Add tests for changeset 4822 [patch by Anne Archibald].Stefan van der Walt2008-04-052-9/+44
* Test effect of newaxis indexing on array scalar.Stefan van der Walt2008-04-051-0/+1
* Use newly available emitter in numscons to handle distutils build dir issues ...David Cournapeau2008-04-051-33/+31
* Replace Copy by Clone call in scons script (Copy is deprecated).David Cournapeau2008-04-051-1/+1
* Fix typo reported in #637.Travis Oliphant2008-04-031-1/+1
* Fix mean docstring.Stefan van der Walt2008-04-031-5/+4
* Longdouble printing of nan's causes problems on some machines.Travis Oliphant2008-03-301-0/+2
* Add test for fix to #713.Travis Oliphant2008-03-281-0/+6
* Fix some Py_INCREF's to Py_XINCREF to avoid segfault when NULL is stored.Travis Oliphant2008-03-282-10/+14
* Change var and std for complex valued arrays to compute z*conj(z) to match si...Travis Oliphant2008-03-272-3/+33
* Fix ticket #676: flattening in Fortran order for ndim > 2Travis Oliphant2008-03-273-6/+26