summaryrefslogtreecommitdiff
path: root/numpy/core/src/arraymethods.c
Commit message (Expand)AuthorAgeFilesLines
* Fix random.poisson(0) to return 0 (#229)Travis Oliphant2006-09-131-1/+1
* Add itemset method to parallel item methodTravis Oliphant2006-09-131-0/+116
* Allow .item(<index>) for fast selection of Python scalars from a numpy array....Travis Oliphant2006-09-131-8/+80
* Fix invalid keyword argument error in reshape method.Travis Oliphant2006-09-071-2/+6
* Change ndarray.searchsorted keyword "value" to "keys".Charles Harris2006-09-031-6/+6
* Add new keyword <side> to the searchsorted method and function.Charles Harris2006-09-031-32/+51
* Finish moving comments from arraymethods to add_newdocs.Charles Harris2006-08-291-44/+29
* Move more documentation from arraymethods to add_newdocs.Charles Harris2006-08-291-105/+87
* Break up the documentation of ndarray attributes into separate calls.Charles Harris2006-08-281-2/+2
* Move most of the remaining documentation from arraymethods to add_newdocs.Charles Harris2006-08-281-221/+68
* Move the documentation of the sort, argsort, and searchsorted methods intoCharles Harris2006-08-271-17/+3
* Fix broadcast-copy on fancy set-item.Travis Oliphant2006-08-261-5/+5
* Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy sp...Travis Oliphant2006-08-241-4/+0
* add .abs() as a method on the array objectcookedm2006-08-231-0/+4
* Fix white-space issues.Travis Oliphant2006-08-191-238/+236
* Check for errors when casting from non-number types.Travis Oliphant2006-08-111-1/+1
* Allow .astype method to work on data-types with fields.Travis Oliphant2006-08-111-0/+3
* Change name of function -- no re-compile necessary.Travis Oliphant2006-08-101-2/+2
* Add output arguments to a few more functions for consistencyTravis Oliphant2006-08-101-17/+29
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-84/+148
* Fix segfault in Ticket #238Travis Oliphant2006-08-081-0/+6
* Change file reading and writing to call file object instead of using PyFile_F...Travis Oliphant2006-07-201-4/+2
* add some more docstringscookedm2006-07-181-1/+7
* Added PyArray_ToString to C-API and made default .tostring() method return C-...Travis Oliphant2006-07-181-6/+12
* Fix docstrings.Travis Oliphant2006-07-121-3/+3
* Fix .choose docstring and allow more functions to be 'vectorized'Travis Oliphant2006-07-111-5/+6
* MADE NPY_ versions of all PyArray_ prefixes corresponding to CONSTANTS. Crea...Travis Oliphant2006-07-101-2/+0
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-8/+8
* Remove dependency on _internal.py from pickles. Clean up Py_ssize_t usage. A...Travis Oliphant2006-07-021-1/+1
* Fixes for objects in arrays.Travis Oliphant2006-06-271-0/+2
* Add support for object-arrays inside of other recorcd types.Travis Oliphant2006-06-271-34/+56
* Fix #157Travis Oliphant2006-06-261-5/+15
* Allow void-type scalars to be sequences if they have fields.Travis Oliphant2006-06-241-7/+1
* Fix copyswapn to take strides.Travis Oliphant2006-06-241-22/+20
* Speed up some copying code. Add MoveInto and CopyInto variants of PyArray_<....Travis Oliphant2006-06-221-5/+5
* Add a version number to pickles of ndarray and dtype.cookedm2006-06-101-12/+36
* Add RNG interface and clean up old-interfaces to be separate from newer ones.Travis Oliphant2006-06-091-11/+0
* Change squeeze to not return array scalars.Travis Oliphant2006-06-011-1/+1
* Better docstring for the nonzero method.edschofield2006-05-181-2/+10
* Better a.transpose() docstring (fixes #121)cookedm2006-05-161-1/+20
* Update copyswap functions to take array as argument in preparation for improv...Travis Oliphant2006-04-251-8/+4
* Fixed where to always return a tupleTravis Oliphant2006-04-121-1/+1
* Comment changes. Fix-up byte-swapping on pickle read so that descriptor is a...Travis Oliphant2006-04-111-1/+14
* Byteswap on pickle-read if notTravis Oliphant2006-04-101-2/+10
* Fix-up record-array pickling and attribute access errors. Fix minor pickling...Travis Oliphant2006-03-311-3/+3
* Fix ravel function because method went back to old behavior.Travis Oliphant2006-03-291-4/+5
* Change so that .ravel() has old behavior.Travis Oliphant2006-03-291-7/+0
* Changed fortran= keywords to order= keywordsTravis Oliphant2006-03-241-14/+14
* Fix reshape to always interpret as C-contiguous unless fortran=True is given ...Travis Oliphant2006-03-211-60/+40
* Fix bug when setting uic to False.Travis Oliphant2006-03-151-1/+1