summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* Add deletefrom, insertinto, and appendontoTravis Oliphant2006-08-261-0/+2
* Add allow threads codeTravis Oliphant2006-08-251-0/+2
* Move signal handler and global variable getter to C-APITravis Oliphant2006-08-241-0/+38
* Add an example of using PyOS_InterruptOccurred() to the test_interuppt function.Travis Oliphant2006-08-241-6/+20
* Make sure test_interrupt ends at some point.Travis Oliphant2006-08-241-8/+3
* Remove automatic setting of tp_free and tp_hash when it could be a Python fun...Travis Oliphant2006-08-241-9/+12
* Fixed issues with ticket #267Travis Oliphant2006-08-241-3/+1
* Add rudimentary interrupt handliNG. Add max, min, round, abs to the numpy sp...Travis Oliphant2006-08-241-2/+28
* Fix white-space issues.Travis Oliphant2006-08-191-728/+727
* Alter the naming of un-specified fields to start at 0Travis Oliphant2006-08-171-2/+2
* Fix ambiguity of list data-type objects. Lists are always interpeted as arra...Travis Oliphant2006-08-171-13/+9
* Allow titles to be used as 'meta-data'Travis Oliphant2006-08-161-8/+17
* Fix Python 2.5 compatibility to work with new b3 releaseTravis Oliphant2006-08-141-1/+1
* Strip characters from chararrays during comparisionTravis Oliphant2006-08-141-0/+67
* Fix ticket #243Travis Oliphant2006-08-131-0/+2
* Check for errors when casting from non-number types.Travis Oliphant2006-08-111-2/+1
* Change name of function -- no re-compile necessary.Travis Oliphant2006-08-101-4/+5
* Add output arguments to a few more functions for consistencyTravis Oliphant2006-08-101-23/+58
* Update C-API to add features needed for numarray compatibility. Output argum...Travis Oliphant2006-08-101-167/+482
* Fix byte-order problems in comma-string formats and size-specified fields.Travis Oliphant2006-08-101-22/+27
* Add numarray compatibility.Travis Oliphant2006-08-081-2/+3
* Fix segfault from last commit.Travis Oliphant2006-07-311-3/+4
* Fix ticket #216. Also fix uses of DATA_RENEW so that object arrays will rais...Travis Oliphant2006-07-311-25/+51
* Move docstrings from multiarraymodule.c to add_newdocs.py.Stefan van der Walt2006-07-311-179/+25
* Remove clash of string module and string numpy object by renaming string scal...Travis Oliphant2006-07-281-2/+7
* Fix ticket #202Travis Oliphant2006-07-251-1/+14
* Change all uses of PyObject_AsReadBuffer and PyObject_AsWriteBuffer to use Py...Travis Oliphant2006-07-251-4/+5
* Fix spelling mistake [for Albert Strasheim].Stefan van der Walt2006-07-241-1/+1
* Fix memory leak and Fix segfault on Python2.3 by disabling threading.Travis Oliphant2006-07-211-4/+8
* Change file reading and writing to call file object instead of using PyFile_F...Travis Oliphant2006-07-201-4/+2
* Improve creation of object arrays when dtype=object is specified.Travis Oliphant2006-07-191-0/+4
* Fixed order of DECREF and END_THREADSTravis Oliphant2006-07-181-2/+1
* Fix ticket #178 which was an error whenever multiple buffers needed to be use...Travis Oliphant2006-07-181-0/+5
* Fix-up usage of NPY_ALLOW_THREADS. Default is now WITH_THREAD but an environ...Travis Oliphant2006-07-181-12/+15
* Make sure generated C-API uses new names.Travis Oliphant2006-07-181-17/+16
* Allow threads at several places in the code.Travis Oliphant2006-07-181-13/+52
* Fix ticket #177Travis Oliphant2006-07-121-2/+8
* MADE NPY_ versions of all PyArray_ prefixes corresponding to CONSTANTS. Crea...Travis Oliphant2006-07-101-16/+13
* Apply npy_ and NPY_ prefixes to all C-API names that don't already have PyArr...Travis Oliphant2006-07-081-22/+20
* Fix-up uses of Bool as return type in C-APITravis Oliphant2006-07-071-2/+2
* Fix memory leak in #172Travis Oliphant2006-07-071-3/+7
* Find reference-counting problem leading to memory leak in PyArray_RoundTravis Oliphant2006-07-061-6/+5
* Convert docstrings to reflect change to floating-point defaults.Travis Oliphant2006-07-031-5/+5
* Remove dependency on _internal.py from pickles. Clean up Py_ssize_t usage. A...Travis Oliphant2006-07-021-1/+35
* Make the default array type float.Travis Oliphant2006-06-301-6/+7
* 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-13/+13
* Fix missing error checks.Travis Oliphant2006-06-261-9/+14
* Removed unnecessary use of copyswap. Fixed up argsort (and lexsort) on byte-...Travis Oliphant2006-06-241-59/+41
* Use INTP_FMT for formatting intp in stringscookedm2006-06-221-2/+1