Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Comment cleanup. | chanley | 2005-11-02 | 1 | -3/+0 | |
| | ||||||
* | CJH -- 11/2/2005 -- Modified the nbytes dictionary to return values in bytes ↵ | chanley | 2005-11-02 | 1 | -1/+5 | |
| | | | | instead of bits. Makes the assumption that 8 bits is 1 byte. | |||||
* | added support for __array_struct__ | Travis Oliphant | 2005-11-02 | 3 | -1/+96 | |
| | ||||||
* | Added nbytes attribute and nbytes dictionary | Travis Oliphant | 2005-11-01 | 3 | -5/+39 | |
| | ||||||
* | Fixed Concatenate to use new ArrayType interface so flexible arrays are ↵ | Travis Oliphant | 2005-11-01 | 2 | -10/+9 | |
| | | | | supported. | |||||
* | Reapplied patch to interpret sequences more cautiously. | edschofield | 2005-11-01 | 1 | -2/+11 | |
| | ||||||
* | Reverted the PySequence_Check patch. DOK matrices should be fixed instead. | edschofield | 2005-11-01 | 1 | -10/+1 | |
| | ||||||
* | Changed array_fromobject() to treat failure of the Array_FromSequence() call | edschofield | 2005-11-01 | 1 | -4/+13 | |
| | | | | | | | | | | differently. Now it clears the error flag and tries interpreting the object as a scalar. This allows more graceful error handling of badly behaved objects like DOK matrices that pass PySequence_Check but can't be indexed like sequences. Fixed small typos. | |||||
* | Added ISALIGNED macro and documentation update. | Travis Oliphant | 2005-11-01 | 2 | -0/+2 | |
| | ||||||
* | Fixed to allow reflected operators instead of OBJECT addition. | Travis Oliphant | 2005-11-01 | 5 | -17/+58 | |
| | ||||||
* | r707@803636f3: kern | 2005-10-31 13:19:55 -0800 | Robert Kern | 2005-10-31 | 1 | -1/+1 | |
| | | | | Fix put() typo | |||||
* | Added more attribute access to flags object. | Travis Oliphant | 2005-10-31 | 1 | -0/+50 | |
| | ||||||
* | Allow flags dictionary attribute access | Travis Oliphant | 2005-10-31 | 1 | -0/+50 | |
| | ||||||
* | Added bool8 type. | Travis Oliphant | 2005-10-31 | 1 | -0/+2 | |
| | ||||||
* | Fixed small typo | edschofield | 2005-10-31 | 1 | -1/+1 | |
| | ||||||
* | Don't use deconvolve for polydiv, as that requires scipy.signal to be installed. | cookedm | 2005-10-30 | 1 | -1/+9 | |
| | | | | Do it using synthetic division. Could be more efficient. | |||||
* | Don't try to handle ImportError in deconvolve when scipy.signal doesn't exist | cookedm | 2005-10-30 | 1 | -4/+1 | |
| | ||||||
* | Fixed nx -> NX | Travis Oliphant | 2005-10-30 | 1 | -2/+2 | |
| | ||||||
* | Change to using PY_ARRAY_TYPES_PREFIX instead of PYARRAY_TYPES_PREFIX, to | cookedm | 2005-10-30 | 2 | -6/+6 | |
| | | | | agree with PY_ARRAY_UNIQUE_SYMBOL. | |||||
* | Make it easier for extension writers. If PYARRAY_TYPES_PREFIX is defined | cookedm | 2005-10-30 | 2 | -20/+119 | |
| | | | | | | | | | to some value before arrayobject.h or ufuncobject.h is included, that value will be prefixed before types that typedef'd. So, if PYARRAY_TYPES_PREFIX is defined to be PA_, then, for instance, Bool as a type will not exist, but instead PA_Bool will have been defined. There is no problem with name mismatches as typedefs are not used in linking. | |||||
* | some clean up for scimath.py, use type objects instead of typechars | cookedm | 2005-10-29 | 1 | -14/+13 | |
| | ||||||
* | small whitespace | cookedm | 2005-10-29 | 1 | -1/+1 | |
| | ||||||
* | Convert polynomial to use type objects instead of old Numeric typechars | cookedm | 2005-10-29 | 1 | -22/+20 | |
| | ||||||
* | TLC for polynomial.py: cleanup, poly1d class is now new-type, and unittests | cookedm | 2005-10-29 | 2 | -3/+74 | |
| | | | | The unit tests are doctests. | |||||
* | Give ufunclike some TLC. Cleanup, add docstrings and unit tests. | cookedm | 2005-10-29 | 2 | -13/+91 | |
| | | | | | The unit tests are as doctests, and currently use the deprecated test_suite method of running. | |||||
* | Whitespace cleanup and make classes new-type | cookedm | 2005-10-29 | 9 | -121/+112 | |
| | ||||||
* | Altered vectorize to allow default arguments in function. | Travis Oliphant | 2005-10-29 | 1 | -4/+11 | |
| | ||||||
* | More cosmetic changes. | Travis Oliphant | 2005-10-29 | 1 | -10/+10 | |
| | ||||||
* | Added PyUFunc_On_Om to UFunc C-API | Travis Oliphant | 2005-10-29 | 5 | -5/+9 | |
| | ||||||
* | Some refactoring | cookedm | 2005-10-28 | 1 | -111/+119 | |
| | | | | | | - poly1d is a new-style class now - no import * now - whitespace, prettying | |||||
* | Cosmetic changes mainly. Remove unused itemsize from scanfunc arguments. | Travis Oliphant | 2005-10-28 | 4 | -10/+8 | |
| | ||||||
* | change PyArray_Scalar to take a void * instead of char *, and some ↵ | cookedm | 2005-10-28 | 3 | -54/+33 | |
| | | | | whitespace cleanup | |||||
* | Change PyArray_Scalar to take a void * instead of char * | cookedm | 2005-10-28 | 1 | -2/+2 | |
| | ||||||
* | Whitespace cleanup | cookedm | 2005-10-28 | 1 | -133/+133 | |
| | ||||||
* | Add __all__ statements to base.{oldnumeric,numeric,numerictypes} | cookedm | 2005-10-28 | 3 | -255/+260 | |
| | | | | This should cut down the number of accidental imports | |||||
* | Fixed SimpleNewFromData to use correct flags. | Travis Oliphant | 2005-10-28 | 1 | -1/+1 | |
| | ||||||
* | Fixed complex to bool issues. | Travis Oliphant | 2005-10-28 | 3 | -24/+108 | |
| | ||||||
* | Introduced PyArray_SimpleNewFromData as a replacement to PyArray_FromDimsAndData | Pearu Peterson | 2005-10-28 | 1 | -0/+2 | |
| | ||||||
* | Removed unused requirement that compare deal with misbehaved arrays. | Travis Oliphant | 2005-10-28 | 2 | -41/+16 | |
| | ||||||
* | Small cleanups in arrayobject.h | Travis Oliphant | 2005-10-28 | 1 | -6/+6 | |
| | ||||||
* | 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 | 5 | -27/+47 | |
| | ||||||
* | Fix 0-d array indexing. | Travis Oliphant | 2005-10-27 | 3 | -4/+19 | |
| | ||||||
* | 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 | 2 | -43/+35 | |
| | ||||||
* | Trivial changes to a.mean() docstring | edschofield | 2005-10-27 | 1 | -2/+2 | |
| | ||||||
* | Improved docstrings: | edschofield | 2005-10-27 | 3 | -190/+261 | |
| | | | | | | | | | * 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 | |||||
* | Made ScalarType tuple so that it could be 2nd argument to isinstance. | Pearu Peterson | 2005-10-27 | 1 | -0/+1 | |
| | ||||||
* | 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 | |
| |