summaryrefslogtreecommitdiff
path: root/numpy/core
Commit message (Expand)AuthorAgeFilesLines
* changed test to assert_allclose() the output valuesJack J. Woehr2019-10-191-2/+4
* added test case test_einsum_failed_on_p9_and_s390x(self)Jack J. Woehr2019-10-191-0/+6
* oops removed an (signed char) ... fixedJack J. Woehr2019-10-191-2/+2
* change suggested by mattipJack J. Woehr2019-10-191-1/+1
* Merge branch 'master' of https://github.com/numpy/numpy into einsum_c_bugletJack J. Woehr2019-10-1829-376/+935
|\
| * DOC: update docstring of allclose to clarify how NaN's are handled.johann.faouzi2019-10-181-4/+4
| * Merge pull request #14738 from eric-wieser/fix-intp-printfMatti Picus2019-10-1811-48/+48
| |\
| | * Fix other incorrect narrowing for format stringsEric Wieser2019-10-1710-44/+44
| | * BUG: Don't narrow intp to int when producing error messagesEric Wieser2019-10-171-4/+4
| * | Merge pull request #14699 from mattip/doc-warningsRalf Gommers2019-10-188-49/+49
| |\ \
| | * | DOC: convert `None` to bare None or ``None``mattip2019-10-157-25/+25
| | * | DOC: no `data_as` reference is availablemattip2019-10-151-1/+1
| | * | DOC: fix output argument referencemattip2019-10-151-16/+16
| | * | DOC: add numpy prefixmattip2019-10-151-7/+7
| * | | MAINT: umath: Change error message for unsupported bool subtraction.Warren Weckesser2019-10-161-1/+1
| | |/ | |/|
| * | Merge pull request #14681 from seberg/remove-unused-boolean-loopsWarren Weckesser2019-10-162-4/+2
| |\ \
| | * | MAINT: General fix removing unused boolean loopsSebastian Berg2019-10-112-4/+2
| * | | API: NaT (arg)min/max behavior (#14717)Zijie (ZJ) Poh2019-10-154-64/+53
| * | | Merge pull request #14342 from raamana/is_scalar_docsMatti Picus2019-10-161-11/+15
| |\ \ \
| | * | | help to identify a numeric scalarPradeep Reddy Raamana2019-08-231-4/+8
| | * | | renamed the input arg to remove hint it is geared for numbersPradeep Reddy Raamana2019-08-231-7/+7
| * | | | Merge pull request #14714 from eric-wieser/datetime-arange-fixSebastian Berg2019-10-152-19/+23
| |\ \ \ \
| | * | | | BUG: Default start to 0 for timedelta arangeEric Wieser2019-10-152-1/+7
| | * | | | MAINT: C99-ify declarations in datetime_arangeEric Wieser2019-10-151-18/+16
| * | | | | Merge pull request #12129 from ydup/masterMatti Picus2019-10-151-0/+3
| |\ \ \ \ \
| | * \ \ \ \ Merge branch 'master' into masterEric Wieser2019-10-15178-9816/+24401
| | |\ \ \ \ \ | | | |/ / / /
| | * | | | | Add wording suggested by Eric. Remove extra example.Stefan van der Walt2019-10-151-35/+4
| | * | | | | Axes shift description and example of np.tensordotYadong Zhang2018-10-101-0/+33
| * | | | | | Merge pull request #14710 from seberg/ufunc-out-deprecationMatti Picus2019-10-152-20/+6
| |\ \ \ \ \ \
| | * | | | | | DEP: Finish the out kwarg deprecation for ufunc callsSebastian Berg2019-10-152-20/+6
| | | |/ / / / | | |/| | | |
| * | | | | | Merge pull request #14469 from sunqm/masterMatti Picus2019-10-152-45/+34
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| | * | | | | MAINT: Refer numpy issue #13808 to upstream CPython bug https://bugs.python.o...Qiming Sun2019-10-051-1/+2
| | * | | | | TEST: Fix broken pypy ctypes testQiming Sun2019-09-191-3/+5
| | * | | | | TEST: Fix broken pypy ctypes testQiming Sun2019-09-192-24/+7
| | * | | | | MAINT: Update tests for _ctypes classQiming Sun2019-09-151-14/+0
| | * | | | | MAINT: Remove _get_void_ptr functionQiming Sun2019-09-151-17/+4
| | * | | | | TEST: Add tests for .ctypes.data_asQiming Sun2019-09-141-0/+29
| | * | | | | BUG: typo in _ctypes classQiming Sun2019-09-101-1/+1
| | * | | | | BUG: _ctypes._as_parameter_ did not hold the array objectQiming Sun2019-09-101-1/+1
| | * | | | | BUG: Fix _ctypes class cirular reference. (#13808)Qiming Sun2019-09-101-3/+4
| * | | | | | Merge pull request #14368 from jdufresne/byteswarningSebastian Berg2019-10-152-8/+17
| |\ \ \ \ \ \
| | * | | | | | MAINT: Avoid all BytesWarningJon Dufresne2019-09-252-5/+13
| | * | | | | | MAINT: Explicitly goto fail when PyUnicode_FromEncodedObject() return NULLJon Dufresne2019-09-251-3/+4
| * | | | | | | Merge pull request #13885 from r-devulap/sqrt-sq-rcp-abs-avxMatti Picus2019-10-155-60/+668
| |\ \ \ \ \ \ \ | | |_|_|_|_|_|/ | |/| | | | | |
| | * | | | | | MAINT: removing duplicated inner loop for e->eRaghuveer Devulapalli2019-09-271-4/+4
| | * | | | | | MAINT: rebase with masterRaghuveer Devulapalli2019-09-271-4/+4
| | * | | | | | TEST: disable raise invalid exception test for sqrtRaghuveer Devulapalli2019-09-271-3/+3
| | * | | | | | ENH: use AVX for floor, rint, ceil and truncRaghuveer Devulapalli2019-09-275-11/+146
| | * | | | | | BUG: ignore invalid exception raised by absoluteRaghuveer Devulapalli2019-09-271-0/+1
| | * | | | | | BUG: fixing multiple CI failuresRaghuveer Devulapalli2019-09-272-11/+14