summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
...
| * | | | | DOC: Add a note to the `np.core` stubs as to why it was left emptyBas van Beek2021-04-261-0/+2
| * | | | | MAINT: Import `np.lib`-based functions from aforementioned namespaceBas van Beek2021-04-263-154/+200
| * | | | | MAINT: import `emath` from `np.lib`Bas van Beek2021-04-263-15/+4
| * | | | | ENH: Add improved placeholder annotations for `np.lib`Bas van Beek2021-04-2618-161/+726
| * | | | | ENH: Add improved placeholder annotations for `np.linalg`Bas van Beek2021-04-261-21/+22
| |/ / / /
* | | | | Merge pull request #18855 from nschloe/crlfCharles Harris2021-04-291-262/+262
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | change CRLF line terminators to UnixNico Schlömer2021-04-261-262/+262
| |/ / /
* | | | Merge pull request #18862 from ogrisel/skip-longdouble-f2py-tests-on-macos-arm64Charles Harris2021-04-271-1/+5
|\ \ \ \ | |_|/ / |/| | |
| * | | TST: Skip f2py TestSharedMemory for LONGDOUBLE on macos/arm64Olivier Grisel2021-04-271-1/+5
| |/ /
* | | fix: Fix the typo "implment"HowJmay2021-04-285-12/+12
|/ /
* | Merge pull request #18837 from seiko2plus/opt_cpp_dispatchCharles Harris2021-04-233-15/+63
|\ \
| * | ENH, SIMD: Add support for dispatching C++ sourcesSayed Adel2021-04-223-15/+63
* | | ENH: Add improved placeholder annotations for `np.matrixlib`Bas van Beek2021-04-232-5/+46
* | | ENH: Add improved placeholder annotations for `np.testing`Bas van Beek2021-04-231-43/+104
* | | ENH: Add improved placeholder annotations for `np.f2py`Bas van Beek2021-04-231-3/+14
* | | ENH: Add improved placeholder annotations for `np.fft`Bas van Beek2021-04-231-18/+18
* | | ENH: Add improved placeholder annotations for `np.rec`Bas van Beek2021-04-232-12/+71
* | | ENH: Add improved placeholder annotations for `np.char`Bas van Beek2021-04-232-53/+96
* | | ENH: Add improved placeholder annotations for `np.ctypeslib`Bas van Beek2021-04-231-7/+11
* | | ENH: Add improved placeholder annotations for `np.emath`Bas van Beek2021-04-231-10/+10
* | | MAINT: Add `void.__getitem__` and `__setitem__`Bas van Beek2021-04-231-0/+2
* | | ENH: add new function `_opt_info()` to utils provides the optimization info o...Sayed Adel2021-04-222-23/+37
* | | BUG: Prevent nan being used in percentile (gh-18831)Kevin Sheppard2021-04-222-3/+24
| |/ |/|
* | Merge pull request #18786 from xamm/clip-doc-add-noteCharles Harris2021-04-211-2/+12
|\ \
| * | MAINT: Remove unnecessary dash for the dividing linePatrick2021-04-171-1/+1
| * | MAINT: change argument type in numpy.clip documentation examplexamm2021-04-161-1/+1
| * | DOC: add note for clip() special case a_min > a_max See #18782xamm2021-04-161-2/+12
* | | Merge pull request #18818 from BvB93/numerictypesCharles Harris2021-04-215-25/+167
|\ \ \
| * | | ENH: Sort the set of `generic` subclasses before appending it to `ScalarType`Bas van Beek2021-04-202-3/+71
| * | | DEP: Remove python 2-specific codeBas van Beek2021-04-201-9/+1
| * | | TST: Update the `np.core.numerictypes` typing testsBas van Beek2021-04-202-0/+36
| * | | DOC: Add a note regarding future workBas van Beek2021-04-201-0/+2
| * | | ENH: Add annotations for 4 objects in `np.core.numerictypes`Bas van Beek2021-04-202-12/+56
| * | | STY: Renamed a variableBas van Beek2021-04-201-3/+3
* | | | Merge pull request #18820 from bashtage/remove-inlineCharles Harris2021-04-211-2/+2
|\ \ \ \
| * | | | MAINT: Remove incorrect inlineKevin Sheppard2021-04-201-2/+2
| |/ / /
* | | | Merge pull request #18813 from seberg/complex-reduction-buffer-fixMatti Picus2021-04-203-20/+37
|\ \ \ \ | |/ / / |/| | |
| * | | MAINT: Remove buffer-clearing from copy codeSebastian Berg2021-04-202-22/+14
| * | | BUG: Initialize the full nditer buffer in case of errorSebastian Berg2021-04-203-0/+25
* | | | Merge pull request #18800 from BvB93/indexCharles Harris2021-04-191-34/+51
|\ \ \ \
| * | | | MAINT: Relax the miscellaneous integer-type-constraintsBas van Beek2021-04-171-34/+51
* | | | | Merge pull request #18799 from BvB93/palceholder4Charles Harris2021-04-191-4/+95
|\ \ \ \ \ | |_|/ / / |/| | | |
| * | | | ENH: Define proper (unannotated) parameters for the class constructorsBas van Beek2021-04-191-17/+88
| * | | | MAINT: Add an explicit `__call__` method to `np.vectorize` and `np.poly1d`Bas van Beek2021-04-171-0/+2
| * | | | BUG: Add a default value to the `step` parameter of `np.arange`Bas van Beek2021-04-171-1/+1
| * | | | MAINT: Update the key-type of `cast` and `nbytes`Bas van Beek2021-04-171-2/+4
| * | | | MAINT: Add `__new__` to the placeholder stubs for classesBas van Beek2021-04-171-1/+17
| |/ / /
* | | | DOC: Improve random.choice() documentationBharat123rox2021-04-182-7/+9
* | | | typo fix within docstring ("is lies")Sylwester Arabas2021-04-181-1/+1
|/ / /
* | | DOC: Add blank line before section.Matthias Bussonnier2021-04-161-0/+1