Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Removed unused requirement that compare deal with misbehaved arrays. | Travis Oliphant | 2005-10-28 | 1 | -40/+15 | |
| | ||||||
* | Altered default flags in PyArray_BufferConverter and fixed signbit and friends. | Travis Oliphant | 2005-10-28 | 2 | -2/+2 | |
| | ||||||
* | Fixed problem with correlate. | Travis Oliphant | 2005-10-27 | 2 | -23/+43 | |
| | ||||||
* | Fix 0-d array indexing. | Travis Oliphant | 2005-10-27 | 2 | -2/+17 | |
| | ||||||
* | Fix for rank-0 arrays. Now a[0] = 1 throws an IndexError, just like | edschofield | 2005-10-27 | 1 | -1/+6 | |
| | | | | | | | reading from a[0] does. ** Note: assigning a[-1] = 0 still segfaults! ** | |||||
* | More docstring fixes for mean() and sum(). | edschofield | 2005-10-27 | 1 | -17/+12 | |
| | ||||||
* | Trivial changes to a.mean() docstring | edschofield | 2005-10-27 | 1 | -2/+2 | |
| | ||||||
* | Improved docstrings: | edschofield | 2005-10-27 | 1 | -8/+47 | |
| | | | | | | | | | * Fuller explanation of default casting behaviour of a.sum(), a.mean(), scipy.sum(), and scipy.average() * Changed some array variable names from 'x' to 'a' in function_base.py for consistency with docstrings in arraymethods.c * Other cosmetic fixes to docstrings and code formatting | |||||
* | Fixed stepping issue for length-1 arrays. | Travis Oliphant | 2005-10-27 | 1 | -1/+1 | |
| | ||||||
* | Fixed problem with temporary allocation in PyArray_Transpose. | Travis Oliphant | 2005-10-26 | 1 | -5/+5 | |
| | ||||||
* | Fixes to array_ass_item and array_item so that other uses of these besides ↵ | Travis Oliphant | 2005-10-26 | 1 | -20/+33 | |
| | | | | the sequence protocol work for 64-bit systems. | |||||
* | Cosmetic fixes. | Travis Oliphant | 2005-10-26 | 1 | -1/+1 | |
| | ||||||
* | Added more types to weave. | Travis Oliphant | 2005-10-26 | 1 | -0/+15 | |
| | ||||||
* | Fix segfault with Character arrays. | Travis Oliphant | 2005-10-26 | 1 | -3/+6 | |
| | ||||||
* | Fix toscalar so it only works when a.size == 1 | Travis Oliphant | 2005-10-26 | 1 | -1/+7 | |
| | ||||||
* | Fixed default typecode on copy. | Travis Oliphant | 2005-10-25 | 1 | -1/+1 | |
| | ||||||
* | Fixed docstring (line-break problem) | edschofield | 2005-10-25 | 1 | -11/+11 | |
| | ||||||
* | Cleaned up exceptions: | edschofield | 2005-10-25 | 5 | -149/+149 | |
| | | | | | | * improved consistency in exception strings; removed typos * changed some ValueError exceptions to TypeError | |||||
* | More fixes to remove allowing numbers for types. | Travis Oliphant | 2005-10-22 | 2 | -12/+16 | |
| | ||||||
* | Removed allowing numbers for typecodes. | Travis Oliphant | 2005-10-22 | 3 | -37/+22 | |
| | ||||||
* | EJS: disabled the stricter type checking on boolean values for now, until I've | edschofield | 2005-10-22 | 1 | -2/+4 | |
| | | | | | tested this with the full scipy | |||||
* | EJS: Patch to use proper True and False values rather than 1 and 0. This ↵ | edschofield | 2005-10-22 | 1 | -4/+14 | |
| | | | | | | | | | | | | allows stricter type checking when we expect a boolean value to prevent the user shooting himself in the foot. Example: >>> a = zeros(1,2,3) used to succeed, creating an array of shape (1,), dtype 2, and fortran=True, which was probably not intended. It now raises a TypeError. [The user probably wants something else, like zeros((1,2,3)).] | |||||
* | Fixed bug in CDOUBLE_setitem | Travis Oliphant | 2005-10-22 | 1 | -2/+3 | |
| | ||||||
* | Remove useless size change. | Travis Oliphant | 2005-10-21 | 1 | -5/+3 | |
| | ||||||
* | Fixed memory alignment issue in frompyfunc | Travis Oliphant | 2005-10-21 | 1 | -9/+26 | |
| | ||||||
* | Added a new test for isinf. | Travis Oliphant | 2005-10-21 | 2 | -11/+22 | |
| | ||||||
* | Fixed up array interface | Travis Oliphant | 2005-10-21 | 2 | -17/+35 | |
| | ||||||
* | Make sure errorobj is NULL. | Travis Oliphant | 2005-10-20 | 1 | -0/+1 | |
| | ||||||
* | Applied Ted Horst's patches. | Travis Oliphant | 2005-10-20 | 2 | -5/+5 | |
| | ||||||
* | Added .fill method. | Travis Oliphant | 2005-10-20 | 3 | -3/+77 | |
| | ||||||
* | Changed lookup to a single list. | Travis Oliphant | 2005-10-20 | 2 | -102/+71 | |
| | ||||||
* | Silly error in _ScalarAsCtype. | Travis Oliphant | 2005-10-20 | 1 | -1/+1 | |
| | ||||||
* | Transpose fixes --- flags needed fixing before calling copy_ND_array. | Travis Oliphant | 2005-10-20 | 2 | -2/+4 | |
| | ||||||
* | Changed default rtype for Bool and low-bit integers | Travis Oliphant | 2005-10-19 | 1 | -3/+18 | |
| | ||||||
* | Fix flags and don't set mem to 0 in FromDimsAndData | Travis Oliphant | 2005-10-19 | 1 | -9/+4 | |
| | ||||||
* | Allow array scalars in f2py conversions. | Travis Oliphant | 2005-10-19 | 1 | -0/+23 | |
| | ||||||
* | Generalized newshape for adding and removing ones. | Travis Oliphant | 2005-10-18 | 2 | -34/+17 | |
| | ||||||
* | Fixed so that setting shape works even for discontiguous arrays as long as ↵ | Travis Oliphant | 2005-10-18 | 2 | -41/+108 | |
| | | | | only inserting or deleting unit length dimensions is involved. This fixes problem with selecting from matrix. | |||||
* | removed % from FMT string | Travis Oliphant | 2005-10-15 | 1 | -2/+2 | |
| | ||||||
* | Fixed __array_data__ interface. | Travis Oliphant | 2005-10-14 | 2 | -9/+34 | |
| | ||||||
* | Removed mapiter from Python exposure. | Travis Oliphant | 2005-10-14 | 2 | -10/+23 | |
| | ||||||
* | Fixes made necessary by change to asarray. | Travis Oliphant | 2005-10-14 | 3 | -27/+40 | |
| | ||||||
* | Fixed subclass PyArray_New error segfault. Updated f2py for newscipy (a little) | Travis Oliphant | 2005-10-14 | 1 | -10/+9 | |
| | ||||||
* | Fixed can cast safely. | Travis Oliphant | 2005-10-13 | 1 | -34/+16 | |
| | ||||||
* | Fixed so that array always returns an array object. | Travis Oliphant | 2005-10-13 | 3 | -22/+105 | |
| | ||||||
* | Added more doc-strings. | Travis Oliphant | 2005-10-12 | 1 | -7/+25 | |
| | ||||||
* | change floor precision of small-bit integers | Travis Oliphant | 2005-10-12 | 1 | -2/+4 | |
| | ||||||
* | Fixed remainder to behaved like Python. | Travis Oliphant | 2005-10-12 | 4 | -20/+60 | |
| | ||||||
* | Fix buglet in set_numeric_ops | Travis Oliphant | 2005-10-12 | 1 | -10/+11 | |
| | ||||||
* | Moved back to 0.4.2 | Travis Oliphant | 2005-10-12 | 1 | -17/+91 | |
| |