Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Put multiarray modul sources into separate directory. | David Cournapeau | 2009-04-30 | 1 | -2153/+0 |
| | |||||
* | Put array methods in separate file. | David Cournapeau | 2009-04-30 | 1 | -12/+14 |
| | |||||
* | Enable separate compilation of existing files for multiarray module. | David Cournapeau | 2009-04-30 | 1 | -3/+0 |
| | |||||
* | Tag any function/typedef/variable exported through the C-API with ↵ | David Cournapeau | 2009-04-30 | 1 | -5/+5 |
| | | | | NPY_NO_EXPORT instead of static. | ||||
* | Coding style cleanups. | Charles Harris | 2009-02-17 | 1 | -224/+351 |
| | |||||
* | Fix missing initializers warnings. | David Cournapeau | 2008-10-08 | 1 | -1/+1 |
| | |||||
* | Use NPY_UNUSED in numpy.core sources. | David Cournapeau | 2008-10-08 | 1 | -1/+1 |
| | |||||
* | Fix ticket #877 along with other bugs not yet reported for data-types with ↵ | Travis Oliphant | 2008-08-06 | 1 | -0/+1 |
| | | | | titles. | ||||
* | Merge OBJECT_API and MULTIARRAY_API as NUMPY_API. | Charles Harris | 2008-05-24 | 1 | -5/+5 |
| | |||||
* | Use EquivTypes instead of equality testing for data-type comparison. | Travis Oliphant | 2008-05-11 | 1 | -1/+1 |
| | |||||
* | Remove dtype_or_type key word in favor of simpler interface. | Travis Oliphant | 2008-05-01 | 1 | -23/+9 |
| | |||||
* | Support for Python types in x.view. | Stefan van der Walt | 2008-05-01 | 1 | -11/+48 |
| | |||||
* | For x.view, change dtype into keyword argument. | Stefan van der Walt | 2008-04-30 | 1 | -3/+5 |
| | |||||
* | Fix reference count problems due to indiscriminate use of DescrConverter in ↵ | Travis Oliphant | 2008-03-22 | 1 | -19/+73 |
| | | | | PyArg_ParseTuple. Tests need to be run to make sure this works. | ||||
* | Add ddof parameter to std and var computations. | Travis Oliphant | 2008-03-07 | 1 | -8/+13 |
| | |||||
* | Allow clip method to have either min or max passed in. | Travis Oliphant | 2007-12-11 | 1 | -2/+6 |
| | |||||
* | Fix whitespace to conform to Python 3000 convention. | Stefan van der Walt | 2007-08-21 | 1 | -1437/+1436 |
| | |||||
* | Properly decrement references for _internal.py imports | Travis Oliphant | 2007-05-23 | 1 | -0/+2 |
| | |||||
* | Fix so that _internal.py gets imported when it is needed. Perhaps this will ↵ | Travis Oliphant | 2007-05-23 | 1 | -0/+6 |
| | | | | fix the problem with multiple-interpreters not working correctly. | ||||
* | Remove tests for inequality on unicode scalars --- not sure why they were ↵ | Travis Oliphant | 2007-05-22 | 1 | -3/+8 |
| | | | | there in the first place. Fix bug in masked_array. | ||||
* | Add interp to numpy.lib adapted from arrayfns. Add an unfinished arrayfns ↵ | Travis Oliphant | 2007-04-02 | 1 | -1/+3 |
| | | | | compatibility module to old_numeric. | ||||
* | Change 0-d record arrays so that field selection returns a 0-d array and not ↵ | Travis Oliphant | 2007-03-30 | 1 | -1/+1 |
| | | | | a scalar. | ||||
* | Fix error in implementation of itemset for >= 2-d arrays. | Travis Oliphant | 2007-02-09 | 1 | -1/+1 |
| | |||||
* | Allow argsort and sort functions and argsort method to take None as an ↵ | Travis Oliphant | 2006-12-02 | 1 | -1/+2 |
| | | | | argument. Add order= keyword to sort and argsort functions. | ||||
* | Add order keyword to argsort and fix documentation of sort and argsort. ↵ | Travis Oliphant | 2006-12-02 | 1 | -5/+31 |
| | | | | Also, fix so that a Python long is passed to mmap instead of an array scalar. Fix setting when using mixed array indices and slice objects by making sure to swap the object in the reverse direction to the swapping that takes place on the MapGet operations. | ||||
* | Allow order keyword to sort for sorting record arrays. | Travis Oliphant | 2006-11-04 | 1 | -6/+30 |
| | |||||
* | Expand usage of hasobject to be a flag-like entity keeping track of how the ↵ | Travis Oliphant | 2006-10-28 | 1 | -19/+21 |
| | | | | data-type should be used. | ||||
* | Fix optimization so that array's of 1-element are not interpeted as integers. | Travis Oliphant | 2006-10-25 | 1 | -0/+3 |
| | |||||
* | Fix some typos and allow use of F_CONTIGUOUS and C_CONTIGUOUS in requires. | Travis Oliphant | 2006-10-24 | 1 | -1/+1 |
| | |||||
* | Fix missing comment characters in intel.py. Check for None in .reshape and ↵ | Travis Oliphant | 2006-10-19 | 1 | -0/+6 |
| | | | | .resize | ||||
* | Python 2.5 fixes: replace int with Py_ssize_t where appropiate | cookedm | 2006-09-28 | 1 | -2/+3 |
| | |||||
* | Fix .take() default-axis argument bug. | Travis Oliphant | 2006-09-23 | 1 | -1/+0 |
| | |||||
* | Switch order of .put arguments to match the function call. Eliminate ↵ | Travis Oliphant | 2006-09-22 | 1 | -17/+2 |
| | | | | .putmask as a method and make it only a function. | ||||
* | Small changes of searchsorted error messages. | Charles Harris | 2006-09-21 | 1 | -2/+3 |
| | |||||
* | Make a PyArray_SearchsideConverter for the side keyword in searchsorted. | Charles Harris | 2006-09-21 | 1 | -20/+5 |
| | | | | | Rename some searchsorted variables with more descriptive names. Do some documentation markup in case we ever run doxygen over the source. | ||||
* | Rework logic a bit for clean-up | Travis Oliphant | 2006-09-19 | 1 | -9/+7 |
| | |||||
* | Fix mean, std, and var methods so that they reduce over double data-type ↵ | Travis Oliphant | 2006-09-19 | 1 | -4/+31 |
| | | | | with integer inputs. | ||||
* | Fix so that astype and transpose return 0-d arrays if given 0-d arrays. | Travis Oliphant | 2006-09-18 | 1 | -3/+2 |
| | |||||
* | Fix problem with .item(n) for 1-d case. | Travis Oliphant | 2006-09-14 | 1 | -1/+3 |
| | |||||
* | Fix random.poisson(0) to return 0 (#229) | Travis Oliphant | 2006-09-13 | 1 | -1/+1 |
| | |||||
* | Add itemset method to parallel item method | Travis Oliphant | 2006-09-13 | 1 | -0/+116 |
| | |||||
* | Allow .item(<index>) for fast selection of Python scalars from a numpy ↵ | Travis Oliphant | 2006-09-13 | 1 | -8/+80 |
| | | | | array. Re-name a few confusing constants in ufuncobject.c | ||||
* | Fix invalid keyword argument error in reshape method. | Travis Oliphant | 2006-09-07 | 1 | -2/+6 |
| | |||||
* | Change ndarray.searchsorted keyword "value" to "keys". | Charles Harris | 2006-09-03 | 1 | -6/+6 |
| | | | | | Tweak documentation of searchsorted. Indent many docstrings in add_newdocs. | ||||
* | Add new keyword <side> to the searchsorted method and function. | Charles Harris | 2006-09-03 | 1 | -32/+51 |
| | | | | | Add documentation thereto. Cleanup whitespace. | ||||
* | Finish moving comments from arraymethods to add_newdocs. | Charles Harris | 2006-08-29 | 1 | -44/+29 |
| | | | | Replace hardcoded 1 by METH_VARARGS in arraymethods. | ||||
* | Move more documentation from arraymethods to add_newdocs. | Charles Harris | 2006-08-29 | 1 | -105/+87 |
| | |||||
* | Break up the documentation of ndarray attributes into separate calls. | Charles Harris | 2006-08-28 | 1 | -2/+2 |
| | |||||
* | Move most of the remaining documentation from arraymethods to add_newdocs. | Charles Harris | 2006-08-28 | 1 | -221/+68 |
| | | | | The formatting is still very crude and the docs need expansion. | ||||
* | Move the documentation of the sort, argsort, and searchsorted methods into | Charles Harris | 2006-08-27 | 1 | -17/+3 |
| | | | | | add_newdocs. Rewrite the documentation of sort and argsort. Replace the documentation of these functions in fromnumeric with the new documentation. |