@@ -65,9 +65,9 @@ from .fromnumeric import (
65
65
take ,
66
66
trace ,
67
67
transpose ,
68
+ transpose as permute_dims ,
68
69
var ,
69
70
)
70
- from .fromnumeric import transpose as permute_dims
71
71
from .function_base import geomspace , linspace , logspace
72
72
from .getlimits import finfo , iinfo
73
73
from .memmap import memmap
@@ -91,6 +91,7 @@ from .numeric import (
91
91
broadcast ,
92
92
can_cast ,
93
93
concatenate ,
94
+ concatenate as concat ,
94
95
convolve ,
95
96
copyto ,
96
97
correlate ,
@@ -145,7 +146,6 @@ from .numeric import (
145
146
zeros ,
146
147
zeros_like ,
147
148
)
148
- from .numeric import concatenate as concat
149
149
from .numerictypes import (
150
150
ScalarType ,
151
151
bool ,
@@ -228,14 +228,22 @@ from .shape_base import (
228
228
)
229
229
from .umath import (
230
230
absolute ,
231
+ absolute as abs ,
231
232
add ,
232
233
arccos ,
234
+ arccos as acos ,
233
235
arccosh ,
236
+ arccosh as acosh ,
234
237
arcsin ,
238
+ arcsin as asin ,
235
239
arcsinh ,
240
+ arcsinh as asinh ,
236
241
arctan ,
242
+ arctan as atan ,
237
243
arctan2 ,
244
+ arctan2 as atan2 ,
238
245
arctanh ,
246
+ arctanh as atanh ,
239
247
bitwise_and ,
240
248
bitwise_count ,
241
249
bitwise_or ,
@@ -272,13 +280,15 @@ from .umath import (
272
280
heaviside ,
273
281
hypot ,
274
282
invert ,
283
+ invert as bitwise_invert ,
275
284
isfinite ,
276
285
isinf ,
277
286
isnan ,
278
287
isnat ,
279
288
lcm ,
280
289
ldexp ,
281
290
left_shift ,
291
+ left_shift as bitwise_left_shift ,
282
292
less ,
283
293
less_equal ,
284
294
log ,
@@ -303,11 +313,13 @@ from .umath import (
303
313
pi ,
304
314
positive ,
305
315
power ,
316
+ power as pow ,
306
317
rad2deg ,
307
318
radians ,
308
319
reciprocal ,
309
320
remainder ,
310
321
right_shift ,
322
+ right_shift as bitwise_right_shift ,
311
323
rint ,
312
324
sign ,
313
325
signbit ,
@@ -323,18 +335,6 @@ from .umath import (
323
335
trunc ,
324
336
vecmat ,
325
337
)
326
- from .umath import absolute as abs
327
- from .umath import arccos as acos
328
- from .umath import arccosh as acosh
329
- from .umath import arcsin as asin
330
- from .umath import arcsinh as asinh
331
- from .umath import arctan as atan
332
- from .umath import arctan2 as atan2
333
- from .umath import arctanh as atanh
334
- from .umath import invert as bitwise_invert
335
- from .umath import left_shift as bitwise_left_shift
336
- from .umath import power as pow
337
- from .umath import right_shift as bitwise_right_shift
338
338
339
339
__all__ = [
340
340
"False_" ,
0 commit comments