summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
blob: 156f4f698164ac95a17a1ff116f668af735ad131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

from lib import add_newdoc

add_newdoc('numpy.core','dtypedescr',
           [('fields', "Fields of the data-typedescr if any."),
            ('alignment', "Needed alignment for this data-type"),
            ('byteorder',
             "Little-endian (<), big-endian (>), native (=), or "\
             "not-applicable (|)"),
            ('char', "Letter typecode for this descriptor"),
            ('dtype', "Typeobject associated with this descriptor"),
            ('kind', "Character giving type-family of this descriptor"),
            ('itemsize', "Size of each item"),
            ('num', "Internally-used number for builtin base")
            ]
           )