summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | | Merge pull request #3200 from njsmith/travis-full-testsCharles Harris2013-04-061-1/+1
|\ \ \
| * | | [BLD] Run 'full' test suite on Travis, including 'slow' testsNathaniel J. Smith2013-04-061-1/+1
* | | | MAINT: Replace xrange by range.Charles Harris2013-04-061-7/+7
|/ / /
* | | Merge pull request #3197 from charris/fix-release-notes-formattingnjsmith2013-04-058-105/+101
|\ \ \
| * | | MAINT: Fix release notes formatting.Charles Harris2013-04-048-105/+101
|/ / /
* | | Merge pull request #2965 from charris/fix-qr-modeCharles Harris2013-04-044-36/+235
|\ \ \
| * | | DOC: Document the new qr modes in the 1.8 release notes.Charles Harris2013-04-011-2/+22
| * | | TST: Add more tests for qr factorization.Charles Harris2013-04-012-0/+128
| * | | ENH: Add `raw`, `reduced`, `complete` modes to qr factorization.Charles Harris2013-04-011-34/+85
* | | | Merge pull request #460 from endolith/regex_formattingCharles Harris2013-04-0332-96/+91
|\ \ \ \
| * \ \ \ merge conflictendolith2013-03-190-0/+0
| |\ \ \ \
| | * | | | DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2012-09-2626-88/+81
| * | | | | DOC: regex-assisted fixes of definition list formattingendolith2013-03-198-10/+12
| * | | | | DOC: Used regex to find colons missing spaces which render wrong online, also...endolith2013-03-1925-86/+79
* | | | | | Merge pull request #3162 from seberg/unsafe-stridesnjsmith2013-04-0313-29/+193
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | TST: Add NPY_RELAXED_STRIDES_CHECKING to TravisSebastian Berg2013-04-022-2/+17
| * | | | | API: Implement new flags API with NPY_RELAXED_STRIDES_CHECKINGSebastian Berg2013-04-018-27/+148
| * | | | | ENH: Relax aligned flag for shape[i] <= 1Sebastian Berg2013-04-011-0/+12
| * | | | | BLD: Add NPY_RELAXED_STRIDES_CHECKING flagSebastian Berg2013-04-012-0/+16
* | | | | | Merge pull request #3178 from charris/2to3-apply-import-fixernjsmith2013-04-02390-709/+690
|\ \ \ \ \ \
| * | | | | | 2to3: Add `from __future__ import ...` to some files that were missed.Charles Harris2013-03-287-6/+21
| * | | | | | 2to3: Add `from __future__ import ...` to new files.Charles Harris2013-03-285-0/+10
| * | | | | | 2to3: Use absolute imports.Charles Harris2013-03-28378-703/+659
* | | | | | | Merge pull request #3185 from charris/fix-pull-475njsmith2013-04-021-8/+9
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | |
| * | | | | | BUG: Raise immediate error in ctypes.load_library when library is bad.Charles Harris2013-04-011-8/+9
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #349 from ericfode/float16powCharles Harris2013-04-012-7/+28
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Update scalarmathmodule.c.srcEric Fode2013-04-011-1/+1
| * | | | | fixed some style problemsEric Fode2012-07-132-14/+17
| * | | | | First attempt at BF for 2028 and added better tests for scalarmath pow functionEric Fode2012-07-122-8/+26
* | | | | | Merge pull request #273 from dlax/fix/rollCharles Harris2013-04-012-5/+31
|\ \ \ \ \ \
| * | | | | | STY: drop some else clauses in rollDenis Laxalde2012-10-131-8/+6
| * | | | | | FIX: handle empty arrays in rollDenis Laxalde2012-05-081-6/+9
| * | | | | | FIX: roll raises a ValueError is axis > ndimDenis Laxalde2012-05-081-1/+4
| * | | | | | TST: add tests for roll functionDenis Laxalde2012-05-081-0/+22
* | | | | | | Allow threads for FFT calculationsMartin Teichmann2013-04-011-0/+12
* | | | | | | Merge pull request #3153 from seberg/issue-3142Charles Harris2013-04-012-4/+87
|\ \ \ \ \ \ \
| * | | | | | | TST: test no reuse of non-existing buffers in nditerSebastian Berg2013-03-181-21/+22
| * | | | | | | BUG: no buffer reuse in nditer, if there was no buffer previouslySebastian Berg2013-03-181-0/+10
| * | | | | | | TST: Add (slow) nditer reduce buffer reuse testSebastian Berg2013-03-181-0/+50
| * | | | | | | BUG: Do not reuse nditer buffers when not filled enough.Sebastian Berg2013-03-181-4/+26
| | |_|_|_|/ / | |/| | | | |
* | | | | | | Merge pull request #3104 from seberg/nditer-allow-0dCharles Harris2013-04-0112-137/+188
|\ \ \ \ \ \ \
| * | | | | | | MAINT: Remove 0-d iterator special case from ufunc_object.cSebastian Berg2013-03-031-12/+0
| * | | | | | | DOC: mention AdvancedNew iterator change in the release notes.Sebastian Berg2013-03-031-0/+7
| * | | | | | | DOC: Add documentation clarifying the use of oa_ndimSebastian Berg2013-03-031-3/+8
| * | | | | | | MAINT: Remove np.ndindex 0-d hack.Sebastian Berg2013-03-031-24/+1
| * | | | | | | TST: Add test that einsum multiplies scalars fineSebastian Berg2013-03-031-0/+1
| * | | | | | | TST: Add basic tests for 0-d np.nditer/np.nested_iter supportSebastian Berg2013-03-031-0/+54
| * | | | | | | ENH: Allow np.nditer to support scalar op_axesSebastian Berg2013-03-031-15/+8
| * | | | | | | API: Make nditer support ndim == 0 for 0-d iterations.Sebastian Berg2013-03-036-83/+109
* | | | | | | | Merge pull request #3179 from charris/fix-resource-warningnjsmith2013-03-291-0/+4
|\ \ \ \ \ \ \ \ | |_|_|_|_|/ / / |/| | | | | | |