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
| from typing import Final, TypedDict, final, type_check_only
|
| @final
| @type_check_only
| class _ExpiredAttributesType(TypedDict):
| geterrobj: str
| seterrobj: str
| cast: str
| source: str
| lookfor: str
| who: str
| fastCopyAndTranspose: str
| set_numeric_ops: str
| NINF: str
| PINF: str
| NZERO: str
| PZERO: str
| add_newdoc: str
| add_docstring: str
| add_newdoc_ufunc: str
| safe_eval: str
| float_: str
| complex_: str
| longfloat: str
| singlecomplex: str
| cfloat: str
| longcomplex: str
| clongfloat: str
| string_: str
| unicode_: str
| Inf: str
| Infinity: str
| NaN: str
| infty: str
| issctype: str
| maximum_sctype: str
| obj2sctype: str
| sctype2char: str
| sctypes: str
| issubsctype: str
| set_string_function: str
| asfarray: str
| issubclass_: str
| tracemalloc_domain: str
| mat: str
| recfromcsv: str
| recfromtxt: str
| deprecate: str
| deprecate_with_doc: str
| disp: str
| find_common_type: str
| round_: str
| get_array_wrap: str
| DataSource: str
| nbytes: str
| byte_bounds: str
| compare_chararrays: str
| format_parser: str
| alltrue: str
| sometrue: str
|
| __expired_attributes__: Final[_ExpiredAttributesType] = ...
|
|