summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
...
* | MAINT: Remove non-native byte order from _var check.Ross Barnowski2020-03-101-4/+0
* | Merge pull request #15696 from rossbar/enh/var_complex_fastpathSebastian Berg2020-03-102-0/+56
|\ \
| * | ENH: Adds a fast path to var for complex inputRoss Barnowski2020-03-092-0/+56
* | | Merge pull request #15706 from melissawm/f2py-typos-fixCharles Harris2020-03-083-8/+8
|\ \ \
| * | | Fixing typos in f2py comments and code.Melissa Weber Mendonca2020-03-043-8/+8
| |/ /
* | | BUG: fix logic error when nm fails on 32-bitmattip2020-03-081-4/+7
* | | MAINT: use list-based APIs to call subprocesses (#15714)Sebastian Berg2020-03-074-34/+79
| |/ |/|
* | Merge pull request #15534 from seberg/deprecate-abstract-scalar-typesMatti Picus2020-03-068-21/+116
|\ \
| * | Update numpy/core/src/multiarray/descriptor.cSebastian Berg2020-03-041-1/+1
| * | Fixup: Do not deprecate generic python typesSebastian Berg2020-02-076-21/+18
| * | DEP: Do not allow "abstract" dtype conversion/creationSebastian Berg2020-02-0612-26/+124
* | | Merge pull request #15487 from ericmariasis/quantileSebastian Berg2020-03-042-1/+11
|\ \ \
| * | | BUG: Fixing result of np quantile edge caseEric Mariasis2020-02-282-1/+11
* | | | convert shebang from python to python3 (#15687)Changqing Li2020-03-0429-29/+29
| |_|/ |/| |
* | | DOC: Improve np.finfo docs (#15678)Ross Barnowski2020-03-011-6/+9
* | | FIXME -> NOTE: more precise language in comment.Ross Barnowski2020-03-011-2/+2
* | | MAINT: Added comment pointing FIXME to relevant PR.Ross Barnowski2020-03-011-0/+1
* | | DOC: Update to clarify actual behavior real_if_(all elements)_close (gh-15644)and-sang2020-02-281-5/+6
|/ /
* | BUG: fix doctest exception messagesmattip2020-02-283-7/+16
* | Merge pull request #12646 from shoyer/refguide-check-exceptionsMatti Picus2020-02-281-2/+3
|\ \
| * | TST: check exception details in refguide_check.pyStephan Hoyer2019-01-011-2/+3
* | | Merge pull request #15504 from emmanuelle/patch-1Matti Picus2020-02-281-4/+1
|\ \ \
| * | | DOC: reorder for a better flowmattip2020-02-281-3/+3
| * | | Removed duplicated code in docstringEmmanuelle Gouillart2020-02-041-3/+0
* | | | TST: Test division by zero both with scalar and with array (gh-15577)Christian Kastner2020-02-261-2/+14
* | | | Merge pull request #14995 from seberg/array-like-coercionMatti Picus2020-02-262-170/+177
|\ \ \ \
| * | | | BUG: Use ``__array__`` during dimension discoverySebastian Berg2020-02-052-170/+177
* | | | | TST: mask DeprecationWarning in xfailed testsmattip2020-02-231-2/+3
* | | | | Merge pull request #15612 from r-devulap/maximum-bug-avxMatti Picus2020-02-232-9/+52
|\ \ \ \ \
| * | | | | MAINT: Improve formatting and update commentsRaghuveer Devulapalli2020-02-231-6/+9
| * | | | | BUG: Update IS_OUTPUT_BLOCKABLE_UNARY to use the nomemoverlap checkRaghuveer Devulapalli2020-02-231-2/+1
| * | | | | BUG: Check for memory overlap in AVX-512F implementation of np.maximim and np...Raghuveer Devulapalli2020-02-231-4/+37
| * | | | | TST: Adding test to validate np.maximum.accumulate and np.minimum.accumulateRaghuveer Devulapalli2020-02-231-0/+8
* | | | | | Merge pull request #15579 from rsokl/clip_docs_fixCharles Harris2020-02-231-2/+2
|\ \ \ \ \ \
| * | | | | | DOC: numpy.clip is equivalent to minimum(..., maximum(...))Ryan Soklaski2020-02-161-2/+2
* | | | | | | MAINT: Pull identical line out of conditional.Ross Barnowski2020-02-221-2/+1
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #15615 from r-devulap/reciprocal-avx-CI-failMatti Picus2020-02-211-1/+0
|\ \ \ \ \ \
| * | | | | | BUG: Remove check requiring float/double natural alignment for AVX codeRaghuveer Devulapalli2020-02-201-1/+0
* | | | | | | DOC: fix documentation for apply_along_axis (#15619)Heshy Roskes2020-02-201-2/+2
|/ / / / / /
* | | | | | DOC: Reword docstring for assert_equal (gh-15614)Harshal Prakash Patankar2020-02-191-1/+1
* | | | | | TST: Add test to ensure assert_array_max_ulp ignores ULP differences betwen N...Raghuveer Devulapalli2020-02-181-0/+6
* | | | | | TST: remove large numbers from sin/cos validation test suiteRaghuveer Devulapalli2020-02-182-89/+0
* | | | | | BUG: Ignore differences in NAN representation for computing ULP differencesRaghuveer Devulapalli2020-02-181-2/+17
|/ / / / /
* | | | | Merge pull request #15549 from r-devulap/transcendental-avxMatti Picus2020-02-161-22/+22
|\ \ \ \ \
| * | | | | TEST: Enable accuracy tests for float32 sin/cos/exp/log for AVX platformsRaghuveer Devulapalli2020-02-121-22/+22
* | | | | | DOC: Document caveat in random.uniformmattip2020-02-151-2/+9
* | | | | | Merge pull request #15385 from eric-wieser/fix-unicode-ucs2Sebastian Berg2020-02-1311-268/+175
|\ \ \ \ \ \
| * | | | | | ENH: Implement the buffer protocol on numpy str_ scalarsEric Wieser2020-02-082-25/+23
| * | | | | | MAINT,TST: Tidy test_datetime_memoryview a littleEric Wieser2020-02-081-9/+8
| * | | | | | BUG, MAINT: Stop using the error-prone deprecated Py_UNICODE apisEric Wieser2020-02-0810-255/+165