[Python-checkins] r62035 - python/trunk/Doc/library/array.rst

raymond.hettinger python-checkins at python.org
Sat Mar 29 11:42:07 CET 2008


Author: raymond.hettinger
Date: Sat Mar 29 11:42:07 2008
New Revision: 62035

Modified:
   python/trunk/Doc/library/array.rst
Log:
Be explicit about what efficient means.

Modified: python/trunk/Doc/library/array.rst
==============================================================================
--- python/trunk/Doc/library/array.rst	(original)
+++ python/trunk/Doc/library/array.rst	Sat Mar 29 11:42:07 2008
@@ -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


More information about the Python-checkins mailing list