@@ -15,21 +15,21 @@ \section{\module{array} ---
1515
1616\begin {tableiii }{c|l|c}{code}{Type code}{C Type}{Minimum size in bytes}
1717\lineiii {'c'}{character}{1}
18- \lineiii {'b'}{signed integer }{1}
19- \lineiii {'B'}{unsigned integer }{1}
20- \lineiii {'h'}{signed integer }{2}
21- \lineiii {'H'}{unsigned integer }{2}
22- \lineiii {'i'}{signed integer }{2}
23- \lineiii {'I'}{unsigned integer }{2}
24- \lineiii {'l'}{signed integer }{4}
25- \lineiii {'L'}{unsigned integer }{4}
26- \lineiii {'f'}{floating point }{4}
27- \lineiii {'d'}{floating point }{8}
18+ \lineiii {'b'}{signed int }{1}
19+ \lineiii {'B'}{unsigned int }{1}
20+ \lineiii {'h'}{signed int }{2}
21+ \lineiii {'H'}{unsigned int }{2}
22+ \lineiii {'i'}{signed int }{2}
23+ \lineiii {'I'}{unsigned int }{2}
24+ \lineiii {'l'}{signed int }{4}
25+ \lineiii {'L'}{unsigned int }{4}
26+ \lineiii {'f'}{float }{4}
27+ \lineiii {'d'}{double }{8}
2828\end {tableiii }
2929
3030The actual representation of values is determined by the machine
3131architecture (strictly speaking, by the \C {} implementation). The actual
32- size can be accessed through the \var {itemsize} attribute. The values
32+ size can be accessed through the \member {itemsize} attribute. The values
3333stored for \code {'L'} and \code {'I'} items will be represented as
3434Python long integers when retrieved, because Python's plain integer
3535type cannot represent the full range of \C {}'s unsigned (long) integers.
0 commit comments