summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* BUG: Set deprecated fields to null in PyArray_InitArrFuncsChris Brown2020-09-151-0/+3
* Merge pull request #17292 from charris/cleanup-remaining-pystring-macrosSebastian Berg2020-09-124-10/+9
|\
| * MAINT: Replace remaining PyString macros.Charles Harris2020-09-114-10/+9
* | MAINT: Replace a couple of missed npy_3kcompat macrosCharles Harris2020-09-122-3/+3
* | MAINT: Replace PyBaseString_Check by PyUnicode_CheckCharles Harris2020-09-123-10/+10
* | Merge pull request #17285 from seberg/tune-down-financial-warningCharles Harris2020-09-122-2/+2
|\ \
| * | DEP: Change the financial name access warning to DeprecationWarningSebastian Berg2020-09-102-2/+2
* | | Merge pull request #17150 from eric-wieser/cython-isinstanceSebastian Berg2020-09-124-0/+58
|\ \ \
| * | | ENH: Add support for the abstract scalars to cython codeEric Wieser2020-08-244-0/+58
* | | | Merge pull request #17293 from charris/cleanup-pyustring-checkCharles Harris2020-09-122-4/+4
|\ \ \ \
| * | | | MAINT: Replace PyUString_Check by PyUnicode_Check.Charles Harris2020-09-112-4/+4
| | |_|/ | |/| |
* | | | Merge pull request #17296 from charris/cleanup-some-pyint_-macrosCharles Harris2020-09-127-44/+44
|\ \ \ \
| * | | | MAINT: Replace PyNumber_Int by PyNumber_LongCharles Harris2020-09-122-6/+6
| * | | | MAINT: Replace PyInt_AsSsize_t by PyLong_AsSsize_t.Charles Harris2020-09-111-2/+2
| * | | | MAINT: Replace PyInt_AsLong in some places.Charles Harris2020-09-112-6/+6
| * | | | MAINT: Replace PyInt_FromLong by PyLong_FromLong.Charles Harris2020-09-117-32/+32
| |/ / /
* | | | ENH: Allow genfromtxt to unpack structured arrays (#16650)Andrew Eckart2020-09-112-6/+63
|/ / /
* | | Merge pull request #17290 from charris/cleanup-some-pystring-macrosMatti Picus2020-09-115-15/+15
|\ \ \
| * | | MAINT: Replace PyStringObject by PyBytesObject.Charles Harris2020-09-101-1/+1
| * | | MAINT: Replace PyString_Check with PyBytes_Check.Charles Harris2020-09-104-11/+11
| * | | MAINT: Replace PyString_Type with PyBytes_Type.Charles Harris2020-09-102-3/+3
* | | | Merge pull request #17250 from albertvillanova/fix-docstringCharles Harris2020-09-1013-83/+183
|\ \ \ \
| * | | | DOC: add autosummary of emath functionsRoss Barnowski2020-09-092-1/+17
| * | | | DOC: reformat meshgrid see also linksRoss Barnowski2020-09-091-4/+3
| * | | | DOC: rm see also ref to doc.indexing.Ross Barnowski2020-09-091-4/+0
| * | | | Fix docstring cross-referencingAlbert Villanova del Moral2020-09-0413-79/+168
* | | | | Merge pull request #17129 from seiko2plus/distutils_avx512bw_maskMatti Picus2020-09-104-32/+170
|\ \ \ \ \ | |_|_|_|/ |/| | | |
| * | | | DIST: fix minor grammar errors in CCompilerOpt docstring(extra_checks)Sayed Adel2020-09-031-7/+7
| * | | | TST: remove unnecessary backslashes from CCompilerOpt config testSayed Adel2020-08-261-24/+12
| * | | | BLD: Check for reduce intrinsics and AVX512BW mask operationsSayed Adel2020-08-264-12/+162
* | | | | Fix typo in shape_base (#17279)Yang Hau2020-09-091-1/+2
| |_|/ / |/| | |
* | | | Merge pull request #17258 from seiko2plus/npyv_fusedMatti Picus2020-09-085-1/+175
|\ \ \ \
| * | | | NPYV: add fused multiply subtract/add intrinics for all supported platformsSayed Adel2020-09-075-1/+175
* | | | | Merge pull request #17268 from tylerjereddy/treddy_distutils_sysconfig_fixMatti Picus2020-09-081-6/+5
|\ \ \ \ \
| * | | | | BUG: sysconfig attributes/distutils issueTyler Reddy2020-09-071-6/+5
* | | | | | Merge pull request #17154 from eric-wieser/remove-PyCObject-refsCharles Harris2020-09-071-2/+2
|\ \ \ \ \ \
| * | | | | | DOC: Remove references to PyCObjectEric Wieser2020-08-241-2/+2
| | |_|_|_|/ | |/| | | |
* | | | | | Merge pull request #17167 from ewmoore/merge_npysortCharles Harris2020-09-0711-89/+79
|\ \ \ \ \ \
| * | | | | | MAINT: Mark functions from npysort as NPY_NO_EXPORTEric Moore2020-09-0310-67/+67
| * | | | | | BLD: Merge the npysort library into multiarrayEric Moore2020-09-031-22/+12
* | | | | | | MAINT: Move typing testsCharles Harris2020-09-0741-11/+15
| |_|/ / / / |/| | | | |
* | | | | | MAINT: Removed an unbound variableBas van Beek2020-09-071-1/+1
* | | | | | Merge branch 'master' into ndarray-methodsCharles Harris2020-09-0726-55/+921
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #17144 from BvB93/function-base-coreCharles Harris2020-09-076-2/+110
| |\ \ \ \ \ \
| | * | | | | | ENH: Change the `axis` type to `SupportsIndex`Bas van Beek2020-08-232-5/+9
| | * | | | | | Revert "MAINT: `SupportsIndex` was added to typing-extensions as of 3.7.4.3"Bas van Beek2020-08-231-1/+4
| | * | | | | | MAINT: `SupportsIndex` was added to typing-extensions as of 3.7.4.3Bas van Beek2020-08-231-4/+1
| | * | | | | | MAINT: The returned step size can be complexBas van Beek2020-08-233-3/+4
| | * | | | | | REV: Manually define the `SupportsIndex` protocolBas van Beek2020-08-231-1/+4
| | * | | | | | MAINT: Removed unused importBas van Beek2020-08-231-1/+1