summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Remove unnecessary checkJay Bourque2013-08-161-5/+3
* More clean upJay Bourque2013-08-161-3/+4
* Clean up previous comment and add test for unary ufunc.Jay Bourque2013-08-162-7/+46
* Use NpyIter object to buffer each input valueJay Bourque2013-08-161-3/+99
* Revert "Call iterator_loop instead of directly calling ufunc."Jay Bourque2013-08-161-55/+22
* Maybe this will fix the DeprecationWarningJay Bourque2013-08-161-2/+2
* Another attempt at fixing DeprecationWarningJay Bourque2013-08-161-2/+2
* Fix DeprecationWarning on python 3.3Jay Bourque2013-08-161-1/+1
* Add test for boolean indexing and boolean ufuncJay Bourque2013-08-161-0/+5
* Add test for mixed dtypesJay Bourque2013-08-161-0/+5
* Call iterator_loop instead of directly calling ufunc.Jay Bourque2013-08-161-22/+55
* Just create an array object for second operand; don't cast to dtype of first ...Jay Bourque2013-08-161-9/+3
* Add tests for 0-dim arrayJay Bourque2013-08-161-5/+7
* Improve comment for creating iter object from second operandJay Bourque2013-08-161-3/+7
* Let indexing code do error checking for arguments with mismatched dimensionsJay Bourque2013-08-161-14/+0
* Remove keyword support for required argumentsJay Bourque2013-08-161-5/+3
* Replace calls to New/Bind/Reset with MapIterArrayJay Bourque2013-08-162-12/+2
* Reword some comments/documentationJay Bourque2013-08-162-6/+9
* Add more commentsJay Bourque2013-08-161-19/+37
* Fix for crash when PyArray_MapIterSwapAxes is calledJay Bourque2013-08-161-0/+10
* Fix build issueJay Bourque2013-08-161-1/+1
* Fix issue with 'at' method when indices are all slice objectsJay Bourque2013-08-162-2/+24
* Add more unit tests for 'at' methodJay Bourque2013-08-162-2/+6
* Code cleanup for 'at' methodJay Bourque2013-08-161-15/+11
* Add more unit tests for 'at' methodJay Bourque2013-08-161-18/+61
* Correct implementation of 'at' method that covers all corner casesJay Bourque2013-08-161-25/+22
* Only allow explicit index slicing in 'at' methodJay Bourque2013-08-161-0/+15
* Add comment to 'at' method unit testJay Bourque2013-08-161-1/+0
* Update documentation for 'at' methodJay Bourque2013-08-161-0/+41
* Update/expand unit testsJay Bourque2013-08-161-11/+34
* Rework 'at' method to fit customer's expectations.Jay Bourque2013-08-161-17/+25
* Misc fixesJay Bourque2013-08-161-29/+36
* Check for sucessful call to MapIterBindJay Bourque2013-08-161-0/+8
* Add unit testsJay Bourque2013-08-161-0/+14
* Change 'select' method name to 'at'Jay Bourque2013-08-161-3/+3
* Add commentsJay Bourque2013-08-161-1/+8
* Add support for both unary and binary ufuncsJay Bourque2013-08-161-19/+93
* Proof-of-concept for ufunc fancy indexingJay Bourque2013-08-162-0/+58
* ENH: use PyDataMem_NEW_ZEROED for PyArray_ZerosJulian Taylor2013-08-162-11/+52
* ENH: add PyDataMem_NEW_ZEROED which allocates memory with callocJulian Taylor2013-08-163-2/+23
* Merge pull request #2721 from abalkin/masterCharles Harris2013-08-151-1/+1
|\
| * Fixed a mistake in linalg.eig() documentation.Alexander Belopolsky2012-11-091-1/+1
* | TST: Test that savetxt works with objects having a write method.Daniel2013-08-151-0/+12
* | ENH: Make savetxt work with file like objects.Daniel2013-08-151-1/+1
* | DOC: Merge doc updates from http://docs.scipy.org/numpy/patch/.Charles Harris2013-08-152-17/+17
* | Merge pull request #3534 from charris/nan-stat-functionsCharles Harris2013-08-1511-524/+1507
|\ \
| * | DOC: Various fixes.Charles Harris2013-08-142-19/+18
| * | BUG: Regression test needs to ignore ComplexWarning.Charles Harris2013-08-121-8/+11
| * | TST: Add tests for the nansum, nanmean, nanvar, and nanstd.Charles Harris2013-08-121-190/+367
| * | MAINT: Refactor nanfunctions.Charles Harris2013-08-122-333/+469