1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
"""Tests for :mod:`numpy.core.fromnumeric`."""
import numpy as np
A = np.array(True, ndmin=2, dtype=bool)
A.setflags(write=False)
a = np.bool_(True)
np.take(a, None) # E: No overload variant of "take" matches argument type
np.take(a, axis=1.0) # E: No overload variant of "take" matches argument type
np.take(A, out=1) # E: No overload variant of "take" matches argument type
np.take(A, mode="bob") # E: No overload variant of "take" matches argument type
np.reshape(a, None) # E: Argument 2 to "reshape" has incompatible type
np.reshape(A, 1, order="bob") # E: Argument "order" to "reshape" has incompatible type
np.choose(a, None) # E: No overload variant of "choose" matches argument type
np.choose(a, out=1.0) # E: No overload variant of "choose" matches argument type
np.choose(A, mode="bob") # E: No overload variant of "choose" matches argument type
np.repeat(a, None) # E: Argument 2 to "repeat" has incompatible type
np.repeat(A, 1, axis=1.0) # E: Argument "axis" to "repeat" has incompatible type
np.swapaxes(A, None, 1) # E: Argument 2 to "swapaxes" has incompatible type
np.swapaxes(A, 1, [0]) # E: Argument 3 to "swapaxes" has incompatible type
np.transpose(A, axes=1.0) # E: Argument "axes" to "transpose" has incompatible type
np.partition(a, None) # E: Argument 2 to "partition" has incompatible type
np.partition(
a, 0, axis="bob" # E: Argument "axis" to "partition" has incompatible type
)
np.partition(
A, 0, kind="bob" # E: Argument "kind" to "partition" has incompatible type
)
np.partition(
A, 0, order=range(5) # E: Argument "order" to "partition" has incompatible type
)
np.argpartition( # E: No overload variant of "argpartition" matches argument type
a, None
)
np.argpartition( # E: No overload variant of "argpartition" matches argument type
a, 0, axis="bob"
)
np.argpartition( # E: No overload variant of "argpartition" matches argument type
A, 0, kind="bob"
)
np.argpartition(
A, 0, order=range(5) # E: Argument "order" to "argpartition" has incompatible type
)
np.sort(A, axis="bob") # E: Argument "axis" to "sort" has incompatible type
np.sort(A, kind="bob") # E: Argument "kind" to "sort" has incompatible type
np.sort(A, order=range(5)) # E: Argument "order" to "sort" has incompatible type
np.argsort(A, axis="bob") # E: Argument "axis" to "argsort" has incompatible type
np.argsort(A, kind="bob") # E: Argument "kind" to "argsort" has incompatible type
np.argsort(A, order=range(5)) # E: Argument "order" to "argsort" has incompatible type
np.argmax(A, axis="bob") # E: No overload variant of "argmax" matches argument type
np.argmax(A, kind="bob") # E: No overload variant of "argmax" matches argument type
np.argmin(A, axis="bob") # E: No overload variant of "argmin" matches argument type
np.argmin(A, kind="bob") # E: No overload variant of "argmin" matches argument type
np.searchsorted( # E: No overload variant of "searchsorted" matches argument type
A[0], 0, side="bob"
)
np.searchsorted( # E: No overload variant of "searchsorted" matches argument type
A[0], 0, sorter=1.0
)
np.resize(A, 1.0) # E: Argument 2 to "resize" has incompatible type
np.squeeze(A, 1.0) # E: No overload variant of "squeeze" matches argument type
np.diagonal(A, offset=None) # E: Argument "offset" to "diagonal" has incompatible type
np.diagonal(A, axis1="bob") # E: Argument "axis1" to "diagonal" has incompatible type
np.diagonal(A, axis2=[]) # E: Argument "axis2" to "diagonal" has incompatible type
np.trace(A, offset=None) # E: Argument "offset" to "trace" has incompatible type
np.trace(A, axis1="bob") # E: Argument "axis1" to "trace" has incompatible type
np.trace(A, axis2=[]) # E: Argument "axis2" to "trace" has incompatible type
np.ravel(a, order="bob") # E: Argument "order" to "ravel" has incompatible type
np.compress(
[True], A, axis=1.0 # E: Argument "axis" to "compress" has incompatible type
)
np.clip(a, 1, 2, out=1) # E: No overload variant of "clip" matches argument type
np.clip(1, None, None) # E: No overload variant of "clip" matches argument type
np.sum(a, axis=1.0) # E: No overload variant of "sum" matches argument type
np.sum(a, keepdims=1.0) # E: No overload variant of "sum" matches argument type
np.sum(a, initial=[1]) # E: No overload variant of "sum" matches argument type
np.all(a, axis=1.0) # E: No overload variant of "all" matches argument type
np.all(a, keepdims=1.0) # E: No overload variant of "all" matches argument type
np.all(a, out=1.0) # E: No overload variant of "all" matches argument type
np.any(a, axis=1.0) # E: No overload variant of "any" matches argument type
np.any(a, keepdims=1.0) # E: No overload variant of "any" matches argument type
np.any(a, out=1.0) # E: No overload variant of "any" matches argument type
np.cumsum(a, axis=1.0) # E: Argument "axis" to "cumsum" has incompatible type
np.cumsum(a, dtype=1.0) # E: Argument "dtype" to "cumsum" has incompatible type
np.cumsum(a, out=1.0) # E: Argument "out" to "cumsum" has incompatible type
np.ptp(a, axis=1.0) # E: No overload variant of "ptp" matches argument type
np.ptp(a, keepdims=1.0) # E: No overload variant of "ptp" matches argument type
np.ptp(a, out=1.0) # E: No overload variant of "ptp" matches argument type
np.amax(a, axis=1.0) # E: No overload variant of "amax" matches argument type
np.amax(a, keepdims=1.0) # E: No overload variant of "amax" matches argument type
np.amax(a, out=1.0) # E: No overload variant of "amax" matches argument type
np.amax(a, initial=[1.0]) # E: No overload variant of "amax" matches argument type
np.amax(a, where=[1.0]) # E: List item 0 has incompatible type
np.amin(a, axis=1.0) # E: No overload variant of "amin" matches argument type
np.amin(a, keepdims=1.0) # E: No overload variant of "amin" matches argument type
np.amin(a, out=1.0) # E: No overload variant of "amin" matches argument type
np.amin(a, initial=[1.0]) # E: No overload variant of "amin" matches argument type
np.amin(a, where=[1.0]) # E: List item 0 has incompatible type
np.prod(a, axis=1.0) # E: No overload variant of "prod" matches argument type
np.prod(a, out=False) # E: No overload variant of "prod" matches argument type
np.prod(a, keepdims=1.0) # E: No overload variant of "prod" matches argument type
np.prod(a, initial=int) # E: No overload variant of "prod" matches argument type
np.prod(a, where=1.0) # E: No overload variant of "prod" matches argument type
np.cumprod(a, axis=1.0) # E: Argument "axis" to "cumprod" has incompatible type
np.cumprod(a, out=False) # E: Argument "out" to "cumprod" has incompatible type
np.size(a, axis=1.0) # E: Argument "axis" to "size" has incompatible type
np.around(a, decimals=1.0) # E: No overload variant of "around" matches argument type
np.around(a, out=type) # E: No overload variant of "around" matches argument type
np.mean(a, axis=1.0) # E: No overload variant of "mean" matches argument type
np.mean(a, out=False) # E: No overload variant of "mean" matches argument type
np.mean(a, keepdims=1.0) # E: No overload variant of "mean" matches argument type
np.std(a, axis=1.0) # E: No overload variant of "std" matches argument type
np.std(a, out=False) # E: No overload variant of "std" matches argument type
np.std(a, ddof='test') # E: No overload variant of "std" matches argument type
np.std(a, keepdims=1.0) # E: No overload variant of "std" matches argument type
np.var(a, axis=1.0) # E: No overload variant of "var" matches argument type
np.var(a, out=False) # E: No overload variant of "var" matches argument type
np.var(a, ddof='test') # E: No overload variant of "var" matches argument type
np.var(a, keepdims=1.0) # E: No overload variant of "var" matches argument type
|