~pythonregexp2.7/python/issue2636-11

« back to all changes in this revision

Viewing changes to Doc/tutorial/stdlib2.rst

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 17:53:26 UTC
  • mfrom: (39025.1.14 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921175326-92vaej2hc3yuecxb
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
286
286
performance trade-offs.
287
287
 
288
288
The :mod:`array` module provides an :class:`array()` object that is like a list
289
 
that stores only homogenous data and stores it more compactly.  The following
 
289
that stores only homogeneous data and stores it more compactly.  The following
290
290
example shows an array of numbers stored as two byte unsigned binary numbers
291
291
(typecode ``"H"``) rather than the usual 16 bytes per entry for regular lists of
292
292
python int objects::