summaryrefslogtreecommitdiff
path: root/numpy
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #20026 from mattip/pypy-7.3.6Charles Harris2021-10-041-2/+2
|\
| * add another call to gc.collect in break_cyclesmattip2021-10-031-2/+2
* | Merge pull request #20008 from BvB93/window-funcCharles Harris2021-10-042-22/+103
|\ \
| * | STY: Directly use a float rather than the `float64` constructorBas van Beek2021-10-041-1/+1
| * | TST: Add more tests for `np.kaiser`Bas van Beek2021-09-301-0/+21
| * | BUG: Fix the `lib.function_base` window functions ignoring extended precision...Bas van Beek2021-09-302-22/+82
* | | Merge pull request #20006 from BvB93/function-baseCharles Harris2021-10-047-39/+474
|\ \ \
| * | | MAINT: Remove `slice` from the accepted `np.place` mask-typesBas van Beek2021-10-012-1/+2
| * | | TST: Add typing tests for `ndarray.__getitem__`Bas van Beek2021-09-302-0/+15
| * | | TST: Add typing tests for `np.lib.function_base`Bas van Beek2021-09-302-0/+117
| * | | ENH: Add annotations for `ndarray.__getitem__`Bas van Beek2021-09-301-2/+20
| * | | ENH: Add annotations for `np.lib.function_base`Bas van Beek2021-09-303-37/+321
| |/ /
* | | Merge pull request #19997 from HaoZeke/f2py_tabsCharles Harris2021-10-043-266/+266
|\ \ \
| * | | MAINT: Reviewer commentsRohit Goswami2021-09-302-6/+6
| * | | STY: Kill all \t with fire in f2pyRohit Goswami2021-09-293-266/+266
| * | | STY: Harmonize rules with cb_rules for f2pyRohit Goswami2021-09-291-253/+253
* | | | Merge pull request #20018 from WarrenWeckesser/show-shapesCharles Harris2021-10-042-4/+38
|\ \ \ \
| * | | | ENH: core: More informative error message for broadcast(*args)warren2021-10-012-4/+38
* | | | | Merge pull request #20019 from sistaseetaram/lgtm-mypy-pluginCharles Harris2021-10-041-3/+2
|\ \ \ \ \
| * | | | | Indent Update #20019Sista Seetaram2021-10-041-1/+1
| * | | | | MAINT:redundant 'else' statement with 'for' loop#19077Sista Seetaram2021-10-021-3/+2
| |/ / / /
* | | | | Merge pull request #20016 from seberg/issue-20009Charles Harris2021-10-041-4/+63
|\ \ \ \ \
| * | | | | BUG: Add a warning for user dtypes modifying casts after useSebastian Berg2021-10-011-4/+63
* | | | | | BUG: fix time cast-safety for `factor*unit` e.g. in `10**6*ms == 1*s` (#19731)Tyler Reddy2021-10-022-1/+58
* | | | | | BUG,DEP: Allow (arg-)partition to accept `uint64` indices (#20000)Bas van Beek2021-10-025-36/+74
| |/ / / / |/| | | |
* | | | | Merge pull request #19899 from arunppsg/issue16751_add_note_to_docsMelissa Weber Mendonça2021-10-012-11/+83
|\ \ \ \ \
| * | | | | TST: added tests for np.ma.ones and np.ma.zerosArun2021-09-221-3/+47
| * | | | | MAINT: Addded variables to __all__Arun2021-09-201-2/+2
| * | | | | DOC: replace return type in np.ma* docstringArun2021-09-201-6/+34
* | | | | | BUG: avoid infinite recurrence on dependencies in crackfortranDamien Caliste2021-10-012-1/+20
* | | | | | MAINT: correct linker flags for NAG Fortran compiler (#20010)Dima Pasechnik2021-10-011-3/+9
* | | | | | DOC: Fix typos in the random and f2py documentation. (#20004)MalikIdreesHasanKhan2021-10-013-3/+3
* | | | | | Merge pull request #19969 from BvB93/array-apiSebastian Berg2021-09-303-11/+27
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | |
| * | | | | Disallow `k=None` for the `eye` functionBas van Beek2021-09-291-1/+1
| * | | | | MAINT: Import `Array` from the `_array_object` namespaceBas van Beek2021-09-291-1/+1
| * | | | | MAINT: Remove the `Sequence` encapsulation from variadic argumentsBas van Beek2021-09-272-3/+3
| * | | | | MAINT: Add a missing subscription slot to `NestedSequence`Bas van Beek2021-09-271-2/+3
| * | | | | MAINT: Fix invalid parameter types used in `Dtype`Bas van Beek2021-09-271-6/+21
* | | | | | TST,MAINT: Change the `data/reveal/` and `data/fail/` files to stub-onlyBas van Beek2021-09-3087-2/+2
* | | | | | MAINT: Change `_callable.py` into a `.pyi` stub fileBas van Beek2021-09-301-3/+5
* | | | | | DOC: Update a comment about the inclusion of `Type[Any]` in the definition of...Bas van Beek2021-09-301-1/+1
* | | | | | STY: Introduce various linting fixes to `numpy.typing`Bas van Beek2021-09-307-74/+165
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #19843 from yashasvimisra2798/patch2Sebastian Berg2021-09-291-4/+9
|\ \ \ \ \ | |_|_|/ / |/| | | |
| * | | | TST: Fix/Improve nonstandard bool to cast numeric testYashasvi Misra2021-09-291-4/+9
* | | | | ENH: Add spaces after punctuation in dtype repr/str. (#19686)Antony Lee2021-09-299-88/+146
* | | | | Merge pull request #19986 from DimitriPapadopoulos/lgtm_warning_out_denomSebastian Berg2021-09-291-1/+1
|\ \ \ \ \
| * | | | | MAINT: Fix LGTM.com warning: Comparison result is always the same (`denom`)Dimitri Papadopoulos2021-09-281-1/+1
* | | | | | DOC: for new_order parameter, add alias for 'native' order (#19995)Mike Taves2021-09-291-3/+3
* | | | | | MAINT: Reduce DepreciationWarnings, use more data API types for f2py (#19978)Rohit Goswami2021-09-293-21/+32
| |_|_|_|/ |/| | | |
* | | | | Merge pull request #19977 from HaoZeke/f2pyformatCharles Harris2021-09-282-379/+483
|\ \ \ \ \