File tree Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Expand file tree Collapse file tree 4 files changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,6 @@ from numpy.lib._arraypad_impl import (
410
410
411
411
from numpy .lib ._arraysetops_impl import (
412
412
ediff1d as ediff1d ,
413
- in1d as in1d ,
414
413
intersect1d as intersect1d ,
415
414
isin as isin ,
416
415
setdiff1d as setdiff1d ,
@@ -453,7 +452,6 @@ from numpy.lib._function_base_impl import (
453
452
bartlett as bartlett ,
454
453
blackman as blackman ,
455
454
kaiser as kaiser ,
456
- trapz as trapz ,
457
455
i0 as i0 ,
458
456
meshgrid as meshgrid ,
459
457
delete as delete ,
@@ -531,7 +529,6 @@ from numpy.lib._polynomial_impl import (
531
529
532
530
from numpy .lib ._shape_base_impl import (
533
531
column_stack as column_stack ,
534
- row_stack as row_stack ,
535
532
dstack as dstack ,
536
533
array_split as array_split ,
537
534
split as split ,
Original file line number Diff line number Diff line change @@ -365,13 +365,6 @@ def setxor1d(
365
365
assume_unique : bool = ...,
366
366
) -> NDArray [Any ]: ...
367
367
368
- def in1d (
369
- ar1 : ArrayLike ,
370
- ar2 : ArrayLike ,
371
- assume_unique : bool = ...,
372
- invert : bool = ...,
373
- ) -> NDArray [np .bool ]: ...
374
-
375
368
def isin (
376
369
element : ArrayLike ,
377
370
test_elements : ArrayLike ,
Original file line number Diff line number Diff line change @@ -621,14 +621,6 @@ def percentile(
621
621
# (that we can reuse)
622
622
quantile = percentile
623
623
624
- # TODO: Returns a scalar for <= 1D array-likes; returns an ndarray otherwise
625
- def trapz (
626
- y : _ArrayLikeComplex_co | _ArrayLikeTD64_co | _ArrayLikeObject_co ,
627
- x : None | _ArrayLikeComplex_co | _ArrayLikeTD64_co | _ArrayLikeObject_co = ...,
628
- dx : float = ...,
629
- axis : SupportsIndex = ...,
630
- ) -> Any : ...
631
-
632
624
def meshgrid (
633
625
* xi : ArrayLike ,
634
626
copy : bool = ...,
Original file line number Diff line number Diff line change @@ -53,8 +53,6 @@ class _SupportsArrayWrap(Protocol):
53
53
54
54
__all__ : list [str ]
55
55
56
- row_stack = vstack
57
-
58
56
def take_along_axis (
59
57
arr : _SCT | NDArray [_SCT ],
60
58
indices : NDArray [integer [Any ]],
You can’t perform that action at this time.
0 commit comments