summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarraymodule.c
Commit message (Expand)AuthorAgeFilesLines
* *Full recompile needed*: changed the name of hasobject structure member to f...Travis Oliphant2008-08-101-8/+8
* Fix ticket #837. Avoid infinite loop in fromfile/fromstring by ensuring that ...Pauli Virtanen2008-07-161-7/+26
* Coding style cleanup. Replace hard tabs with spaces.Charles Harris2008-07-161-5/+5
* Deprecate PyArray_As2D.Charles Harris2008-07-161-0/+4
* Make deprecation messages more informative.Charles Harris2008-07-141-4/+2
* Move DEPRECATE macro to ndarrayobject.h.Charles Harris2008-07-131-0/+6
* Coding style cleanupsCharles Harris2008-07-121-14/+28
* Fix ref-count leak in Ticket #843Travis Oliphant2008-07-081-1/+7
* Fix more in ticket #791.Travis Oliphant2008-06-051-13/+2
* Merge OBJECT_API and MULTIARRAY_API as NUMPY_API.Charles Harris2008-05-241-83/+83
* Fix bug reported on SciPy mailing list which arose when the results of a broa...Travis Oliphant2008-05-221-0/+16
* Fix ticket #789 again.Travis Oliphant2008-05-221-10/+2
* Remove trailing space.David Cournapeau2008-05-221-8/+8
* Fix #789 by Alan Mcintyre.David Cournapeau2008-05-221-1/+10
* Fix ticket #791.Travis Oliphant2008-05-131-4/+4
* Check for error and fix spacing.Travis Oliphant2008-04-301-2/+3
* Code style cleanups and fix for ticket #743.Charles Harris2008-04-261-50/+55
* revert to 5092Charles Harris2008-04-261-66/+57
* Add semicolons to end of macros. This helps editors and such get theCharles Harris2008-04-261-57/+66
* Fast implementation of take [patch by Eric Firing].Stefan van der Walt2008-04-181-17/+29
* Change var and std for complex valued arrays to compute z*conj(z) to match si...Travis Oliphant2008-03-271-3/+32
* Fix ticket #583 : error when using str as data-type for fromiter.Travis Oliphant2008-03-221-1/+5
* Fix reference count problems due to indiscriminate use of DescrConverter in P...Travis Oliphant2008-03-221-10/+30
* Revert r4897, which fixed one memory error in exchange for another.Stefan van der Walt2008-03-211-1/+1
* Fix memory leaks as reported in #562. Patch by Matthieu Brucher.Stefan van der Walt2008-03-201-1/+1
* Add ddof parameter to std and var computations.Travis Oliphant2008-03-071-1/+9
* Re-raise the MemoryError for 0-bytes read even if it is not the right thing.....Travis Oliphant2008-03-031-4/+5
* Fix realloc problem by making sure it is never called with 0.Travis Oliphant2008-03-021-3/+6
* Fix ticket #658 which is a segfault on a corner case for copy detection.Travis Oliphant2008-02-131-1/+1
* Fix some indentation.Charles Harris2008-02-131-4/+4
* Merge revisions 4721:4771 from the trunkJarrod Millman2008-02-081-10/+12
|\
| * Remove unused variable in last change.Travis Oliphant2008-01-311-1/+0
| * Fix type-coercion for search sorted so that it works with variable-length arr...Travis Oliphant2008-01-311-9/+12
* | Merge changes in cleanconfig_rtmDavid Cournapeau2008-01-181-1/+1
|/
* Improve packbits and unpackbits so that striding works correctly.Travis Oliphant2007-12-271-1/+0
* Re-work slow clip to use minimum followed by maximum.Travis Oliphant2007-12-111-32/+23
* Allow clip method to have either min or max passed in.Travis Oliphant2007-12-111-53/+95
* Fix arange output byteorder. Closes ticket #616.Stefan van der Walt2007-11-181-1/+1
* Fix pickling of numpy.unicode_ objects on narrow builds of Python.Travis Oliphant2007-10-261-0/+3
* Fix places where RENEW is called so that if reallocation fails, cleanup is do...Travis Oliphant2007-09-211-11/+28
* Fix ticket #546: invalid argmax for non-native arrays.Travis Oliphant2007-09-211-5/+7
* Remove hack to fix putmask and apply Eric's patch instead.Stefan van der Walt2007-08-271-4/+3
* Fix putmask for byte-swapped arrays.Stefan van der Walt2007-08-261-1/+2
* Fix whitespace to conform to Python 3000 convention.Stefan van der Walt2007-08-211-5785/+5785
* Fast putmask implementation (patch by Eric Firing).Stefan van der Walt2007-08-211-91/+98
* Fix some compiler warnings.Travis Oliphant2007-05-231-2/+2
* Properly decrement references for _internal.py importsTravis Oliphant2007-05-231-4/+8
* Fix so that _internal.py gets imported when it is needed. Perhaps this will ...Travis Oliphant2007-05-231-4/+8
* Remove import multiarray from top of _internal.pyTravis Oliphant2007-05-231-4/+2
* fix typo: iteratable -> iteratorcookedm2007-05-181-1/+1