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
|
"""
Create the numpy._core.umath namespace for backward compatibility. In v1.16
the multiarray and umath c-extension modules were merged into a single
_multiarray_umath extension module. So we replicate the old namespace
by importing from the extension module.
"""
import numpy
from . import _multiarray_umath
from ._multiarray_umath import *
# These imports are needed for backward compatibility,
# do not change them. issue gh-11862
# _ones_like is semi-public, on purpose not added to __all__
# These imports are needed for the strip & replace implementations
from ._multiarray_umath import (
_UFUNC_API,
_add_newdoc_ufunc,
_center,
_expandtabs,
_expandtabs_length,
_extobj_contextvar,
_get_extobj_dict,
_ljust,
_lstrip_chars,
_lstrip_whitespace,
_make_extobj,
_ones_like,
_partition,
_partition_index,
_replace,
_rjust,
_rpartition,
_rpartition_index,
_rstrip_chars,
_rstrip_whitespace,
_slice,
_strip_chars,
_strip_whitespace,
_zfill,
)
__all__ = [
'absolute', 'add',
'arccos', 'arccosh', 'arcsin', 'arcsinh', 'arctan', 'arctan2', 'arctanh',
'bitwise_and', 'bitwise_or', 'bitwise_xor', 'cbrt', 'ceil', 'conj',
'conjugate', 'copysign', 'cos', 'cosh', 'bitwise_count', 'deg2rad',
'degrees', 'divide', 'divmod', 'e', 'equal', 'euler_gamma', 'exp', 'exp2',
'expm1', 'fabs', 'floor', 'floor_divide', 'float_power', 'fmax', 'fmin',
'fmod', 'frexp', 'frompyfunc', 'gcd', 'greater', 'greater_equal',
'heaviside', 'hypot', 'invert', 'isfinite', 'isinf', 'isnan', 'isnat',
'lcm', 'ldexp', 'left_shift', 'less', 'less_equal', 'log', 'log10',
'log1p', 'log2', 'logaddexp', 'logaddexp2', 'logical_and', 'logical_not',
'logical_or', 'logical_xor', 'matvec', 'maximum', 'minimum', 'mod', 'modf',
'multiply', 'negative', 'nextafter', 'not_equal', 'pi', 'positive',
'power', 'rad2deg', 'radians', 'reciprocal', 'remainder', 'right_shift',
'rint', 'sign', 'signbit', 'sin', 'sinh', 'spacing', 'sqrt', 'square',
'subtract', 'tan', 'tanh', 'true_divide', 'trunc', 'vecdot', 'vecmat']
|