#7388: "python".capitalize() in the Doc

This commit is contained in:
Ezio Melotti 2009-12-19 22:41:49 +00:00
parent 98a24def03
commit 062d2b52f3
22 changed files with 26 additions and 26 deletions

View file

@ -306,7 +306,7 @@ sophisticated and robust capabilities of its larger packages. For example:
* The :mod:`xml.dom` and :mod:`xml.sax` packages provide robust support for
parsing this popular data interchange format. Likewise, the :mod:`csv` module
supports direct reads and writes in a common database format. Together, these
modules and packages greatly simplify data interchange between python
modules and packages greatly simplify data interchange between Python
applications and other tools.
* Internationalization is supported by a number of modules including

View file

@ -289,7 +289,7 @@ The :mod:`array` module provides an :class:`array()` object that is like a list
that stores only homogeneous data and stores it more compactly. The following
example shows an array of numbers stored as two byte unsigned binary numbers
(typecode ``"H"``) rather than the usual 16 bytes per entry for regular lists of
python int objects::
Python int objects::
>>> from array import array
>>> a = array('H', [4000, 10, 700, 22222])