File size: 1,036 Bytes
dc2106c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from typing import List

from numpy import (
    format_parser as format_parser,
    record as record,
    recarray as recarray,
)

__all__: List[str]

def fromarrays(
    arrayList,
    dtype=...,
    shape=...,
    formats=...,
    names=...,
    titles=...,
    aligned=...,
    byteorder=...,
): ...
def fromrecords(
    recList,
    dtype=...,
    shape=...,
    formats=...,
    names=...,
    titles=...,
    aligned=...,
    byteorder=...,
): ...
def fromstring(
    datastring,
    dtype=...,
    shape=...,
    offset=...,
    formats=...,
    names=...,
    titles=...,
    aligned=...,
    byteorder=...,
): ...
def fromfile(
    fd,
    dtype=...,
    shape=...,
    offset=...,
    formats=...,
    names=...,
    titles=...,
    aligned=...,
    byteorder=...,
): ...
def array(
    obj,
    dtype=...,
    shape=...,
    offset=...,
    strides=...,
    formats=...,
    names=...,
    titles=...,
    aligned=...,
    byteorder=...,
    copy=...,
): ...