summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* 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 #14459 from eric-wieser/MemoryError-sizeAllan Haldane2019-09-092-2/+92
|\
| * ENH: Print the amount of memory that would be used by a failed allocationEric Wieser2019-09-082-2/+92
* | Merge pull request #14458 from ahaldane/fix_hypergeometric_longEric Wieser2019-09-081-3/+3
|\ \
| * | BUG: random.hypergeometic assumes npy_long is npy_int64, hung ppc64Allan Haldane2019-09-091-3/+3
* | | Merge pull request #14349 from maxwell-aladago/assert_array_compareMatti Picus2019-09-092-7/+28
|\ \ \ | |/ / |/| |
| * | a separate test for scalars base on review commentsMaxwell Aladago2019-09-081-1/+11
| * | adding testsMaxwell Aladago2019-09-061-0/+10
| * | assert_array_compareMaxwell Aladago2019-09-061-7/+8
* | | Merge pull request #14393 from ahaldane/fix_fieldless_view_itemsizeMatti Picus2019-09-085-9/+54
|\ \ \
| * | | BUG: Fix fieldless comparison broadcastingAllan Haldane2019-09-052-6/+16
| * | | BUG: Fix comparison of fieldless structured arraysAllan Haldane2019-08-312-5/+13
| * | | BUG: PyDataType_ISUNSIZED should be False for structured typesAllan Haldane2019-08-314-4/+25
| * | | BUG: view with fieldless dtype should raise if itemsize != 0Allan Haldane2019-08-282-1/+7
* | | | MAINT: clean up numpy/fft/info.pyRalf Gommers2019-09-072-190/+185
* | | | MAINT: move pocketfft .py/.so to `_pocketfft`Ralf Gommers2019-09-074-8/+8
* | | | Merge pull request #14360 from rgommers/random-docsRalf Gommers2019-09-071-2/+2
|\ \ \ \
| * | | | DOC: fix doc linking, was referencing private submodules.Ralf Gommers2019-08-251-2/+2
* | | | | Merge pull request #14355 from qwhelan/pytesttesterRalf Gommers2019-09-071-3/+8
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | DOC: clarify that PytestTester is non-publicChristopher Whelan2019-08-241-3/+8
| |/ / /
* | | | Merge pull request #13610 from eric-wieser/argwhereSebastian Berg2019-09-063-9/+43
|\ \ \ \
| * | | | ENH: Always produce a consistent shape in the result of `argwhere`Eric Wieser2019-09-053-9/+43
| | |_|/ | |/| |
* | | | Merge pull request #14426 from espdev/see-also-printoptionsMatti Picus2019-09-061-2/+2
|\ \ \ \
| * | | | DOC: add the reference to 'printoptions'Eugene Prilepin2019-09-051-2/+2
* | | | | BUG: Fix ZeroDivisionError for zero length arrays in pocketfft. (#14279)mreineck2019-09-051-13/+19
* | | | | Merge pull request #14429 from seberg/exception-moduleCharles Harris2019-09-051-0/+1
|\ \ \ \ \
| * | | | | ENH: Override module in private error classes displayed as baseSebastian Berg2019-09-051-0/+1
* | | | | | Merge pull request #14209 from lagru/fix-linear-rampCharles Harris2019-09-052-76/+41
|\ \ \ \ \ \
| * | | | | | BUG: Replace _linear_ramp with linspaceLars Grueter2019-08-272-76/+41
* | | | | | | BUG: Fixed maximum relative error reporting in assert_allclose (gh-13802)CakeWithSteak2019-09-052-2/+16
| |_|/ / / / |/| | | | |
* | | | | | Merge pull request #14387 from mattip/dtype-overflowCharles Harris2019-09-042-6/+19
|\ \ \ \ \ \ | |_|/ / / / |/| | | | |
| * | | | | Apply suggestions from code reviewMatti Picus2019-09-042-3/+4
| * | | | | BUG: skip new test on windows, 32-bitmattip2019-08-281-0/+2
| * | | | | BUG: test, fix regression in converting to ctypesmattip2019-08-282-6/+16
| | |_|_|/ | |/| | |
* | | | | Merge pull request #14395 from rgommers/doc-subclCharles Harris2019-09-041-1/+2
|\ \ \ \ \
| * | | | | DOC: add comment to explain `object.__new__`.Ralf Gommers2019-08-281-0/+1
| * | | | | DOC: fix issue with __new__ usage in subclassing doc.Ralf Gommers2019-08-281-1/+1
| |/ / / /
* | | | | Merge pull request #14417 from hameerabbasi/lexsort-rsort-fixCharles Harris2019-09-042-9/+17
|\ \ \ \ \
| * | | | | BUG: Fix lexsort + radix sort.Hameer Abbasi2019-09-042-9/+17
| | |_|/ / | |/| | |
* | | | | Merge pull request #12284 from mattip/numpy.pxdSebastian Berg2019-09-041-0/+978
|\ \ \ \ \
| * | | | | ENH: supply our version of numpy.pxd, adjust as neededmattip2019-09-041-0/+978
| |/ / / /
* | | | | Merge pull request #14416 from WarrenWeckesser/bug-attribute-errorMatti Picus2019-09-041-3/+2
|\ \ \ \ \
| * | | | | BUG: Fix format statement associated with AttributeError.Warren Weckesser2019-09-041-3/+2
| |/ / / /
* | | | | Merge pull request #14352 from eric-wieser/simplify-polyvander-int-deprecationMatti Picus2019-09-041-8/+2
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | MAINT: Remove redundant deprecation checksEric Wieser2019-08-241-8/+2