diff options
author | Raymond Hettinger <python@rcn.com> | 2008-03-29 10:42:07 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-03-29 10:42:07 (GMT) |
commit | 594b76b7eb8a3f1ca97f1abaca91a71fb16d40cf (patch) | |
tree | 882b26913c2a6b24427eb1503c6fc6df0e92e3d7 /Doc | |
parent | 91e0cdaedca473fe5833a0f7d0d2eb40f25383aa (diff) | |
download | cpython-594b76b7eb8a3f1ca97f1abaca91a71fb16d40cf.zip cpython-594b76b7eb8a3f1ca97f1abaca91a71fb16d40cf.tar.gz cpython-594b76b7eb8a3f1ca97f1abaca91a71fb16d40cf.tar.bz2 |
Be explicit about what efficient means.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/array.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst index 5194edc..2b93801 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -3,12 +3,12 @@ =================================================== .. module:: array - :synopsis: Efficient arrays of uniformly typed numeric values. + :synopsis: Space efficient arrays of uniformly typed numeric values. .. index:: single: arrays -This module defines an object type which can efficiently represent an array of +This module defines an object type which can Compactly represent an array of basic values: characters, integers, floating point numbers. Arrays are sequence types and behave very much like lists, except that the type of objects stored in them is constrained. The type is specified at object creation time by using a |