summaryrefslogtreecommitdiff
path: root/numpy/core/src
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #6553 from yashmehrotra/partition-fixCharles Harris2015-10-271-2/+6
|\
| * BUG: Fixed partition errors on empty input. Closes #6530Yash Mehrotra2015-10-261-2/+6
* | BUG: fix inner() by copying if needed to enforce contiguityalex2015-10-231-2/+20
|/
* Revert "Merge pull request #5614 from charris/cleanup-gh-5587"Charles Harris2015-10-201-0/+9
* Revert "Merge pull request #6354 from mingwpy/mingwpy"Charles Harris2015-10-201-5/+0
* MAINT: Speedup field access by removing unneeded safety checks (3/3)Allan Haldane2015-10-184-21/+55
* MAINT: Speedup field access by removing unneeded safety checks (2/3)Allan Haldane2015-10-181-53/+64
* MAINT: Speedup field access by removing unneeded safety checks (1/3)Allan Haldane2015-10-184-92/+240
* Merge pull request #6438 from juliantaylor/msvc-workaroundCharles Harris2015-10-111-1/+3
|\
| * BUG: mask nan to 1 in ordered compareJulian Taylor2015-10-101-1/+3
* | Merge pull request #6354 from mingwpy/mingwpyCharles Harris2015-10-091-0/+5
|\ \
| * | BLD: mingwpy fixescarlkl2015-09-241-0/+5
* | | MAINT: Remove single file c files.Charles Harris2015-10-082-70/+0
* | | MAINT: Remove single file compilation support.Charles Harris2015-10-0820-69/+2
* | | Merge pull request #4753 from mhvk/bug-4753Charles Harris2015-10-051-5/+32
|\ \ \
| * | | Check `out` kwarg for __nump_ufunc__ override and set index appropriatelyBlake Griffith2015-06-191-5/+32
* | | | ENH: adds lexsort for arrays with object dtypebehzad nouri2015-10-021-5/+26
* | | | Merge pull request #6336 from njsmith/clean-up-ufunc-dead-codeCharles Harris2015-10-012-22/+9
|\ \ \ \
| * | | | MAINT: cleanup dead code/arguments/fields from ufuncsNathaniel J. Smith2015-10-012-22/+9
| | |/ / | |/| |
* | | | Merge pull request #6346 from ChristopherHogan/signbit_fixCharles Harris2015-10-011-1/+1
|\ \ \ \
| * | | | BUG: Guarantee non-zero is 1 for switch statementsChris Hogan2015-10-011-1/+1
* | | | | Merge pull request #6269 from yashmehrotra/depr-pyobject_compareCharles Harris2015-09-283-38/+27
|\ \ \ \ \
| * | | | | MAINT: Deprecated PyObject_Compare in favor of PyObject_RichCompareBool. Fixe...Yash Mehrotra2015-09-293-38/+27
* | | | | | Merge pull request #6372 from seberg/revert-vdotCharles Harris2015-09-271-20/+16
|\ \ \ \ \ \
| * | | | | | REV: Make sure ravel returns a contiguous arraySebastian Berg2015-09-271-20/+16
| | |_|/ / / | |/| | | |
* | | | | | BUG: Fix vdot for uncontiguous arrays.Sebastian Berg2015-09-271-6/+10
|/ / / / /
* | | | | Merge pull request #6271 from charris/change-deprecated-indexes-to-errorCharles Harris2015-09-103-211/+22
|\ \ \ \ \
| * | | | | DEP,MAINT: Change deprecated indexing to errors.Charles Harris2015-09-063-211/+22
| |/ / / /
* | | | | BUG: allow npy_PyFile_Dup2 to report its error in np.fromfileColin Jermain2015-09-081-2/+0
| |/ / / |/| | |
* | | | BUG: enforce signed char in extint128Antoine Pitrou2015-09-021-1/+1
* | | | BUG: fix timedelta arithmetic with invalid values or NaTsAntoine Pitrou2015-09-011-7/+19
* | | | Merge pull request #6264 from aarchiba/longdouble_improvementsCharles Harris2015-08-311-1/+1
|\ \ \ \ | |/ / / |/| | |
| * | | BUG: handle bad data better under python 2.6Anne Archibald2015-08-291-1/+1
* | | | ENH: solve also internal overlap problemsPauli Virtanen2015-08-293-24/+221
* | | | ENH: add shares_memory, implement may_share_memory using itPauli Virtanen2015-08-292-82/+72
* | | | TST: add tests for 128-bit and checked arithmeticPauli Virtanen2015-08-291-0/+478
* | | | ENH: use 128-bit integers to avoid overflows in solve_diophantinePauli Virtanen2015-08-292-106/+371
* | | | ENH: core: add solve_diophantine/may_share_memory to multiarray_testsPauli Virtanen2015-08-291-0/+181
* | | | ENH: core: add diophantine equation solver for deciding memory overlap problemsPauli Virtanen2015-08-298-56/+884
* | | | Merge pull request #6236 from jaimefrio/argminmax_objectCharles Harris2015-08-281-32/+42
|\ \ \ \ | |/ / / |/| | |
| * | | BUG: argmin/max of object dtype with NULLs, fixes #6032Jaime Fernandez2015-08-221-32/+42
* | | | MAINT: clarify unclear comment in NumPyOS_ascii_strtodPauli Virtanen2015-08-281-12/+3
* | | | BUG: fix #4381: precision loss on string -> longdouble conversionAnne Archibald2015-08-285-20/+256
* | | | Merge pull request #6254 from njsmith/fix-6250Charles Harris2015-08-271-1/+3
|\ \ \ \
| * | | | BUG: Fix refcounting for string comparison in array_richcompareNathaniel J. Smith2015-08-271-1/+3
* | | | | Merge pull request #6252 from juliantaylor/comp-aliasJaime2015-08-261-2/+1
|\ \ \ \ \ | | |_|_|/ | |/| | |
| * | | | BUG: simplify code remove strict aliasing violationJulian Taylor2015-08-261-2/+1
* | | | | Merge pull request #6245 from seberg/index-iter-bugCharles Harris2015-08-261-3/+3
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | BUG: Checking advanced indices could fail for some arraysSebastian Berg2015-08-261-3/+3
* | | | | BUG: Added extra test for checking multiple unicode field namesYash Mehrotra2015-08-251-1/+3