Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e9e0596

Browse files
committed
Nits.
1 parent c166331 commit e9e0596

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

Doc/lib/libarray.tex

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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

3030
The actual representation of values is determined by the machine
3131
architecture (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
3333
stored for \code{'L'} and \code{'I'} items will be represented as
3434
Python long integers when retrieved, because Python's plain integer
3535
type cannot represent the full range of \C{}'s unsigned (long) integers.

0 commit comments

Comments
 (0)