]> granicus.if.org Git - python/commitdiff
Issue #12644: document the '%a' conversion in the old string formatting operations...
authorEli Bendersky <eliben@gmail.com>
Fri, 29 Jul 2011 06:30:42 +0000 (09:30 +0300)
committerEli Bendersky <eliben@gmail.com>
Fri, 29 Jul 2011 06:30:42 +0000 (09:30 +0300)
Doc/library/stdtypes.rst

index f0933a55bb56e8aadf003770a87a3e39d12c6d0f..e43fc041c3c2e33e53eb7d358d6744c58065f36e 100644 (file)
@@ -1464,7 +1464,7 @@ components, which must occur in this order:
    object to convert comes after the minimum field width and optional precision.
 
 #. Precision (optional), given as a ``'.'`` (dot) followed by the precision.  If
-   specified as ``'*'`` (an asterisk), the actual width is read from the next
+   specified as ``'*'`` (an asterisk), the actual precision is read from the next
    element of the tuple in *values*, and the value to convert comes after the
    precision.
 
@@ -1546,9 +1546,12 @@ The conversion types are:
 | ``'r'``    | String (converts any Python object using            | \(5)  |
 |            | :func:`repr`).                                      |       |
 +------------+-----------------------------------------------------+-------+
-| ``'s'``    | String (converts any Python object using            |       |
+| ``'s'``    | String (converts any Python object using            | \(5)  |
 |            | :func:`str`).                                       |       |
 +------------+-----------------------------------------------------+-------+
+| ``'a'``    | String (converts any Python object using            | \(5)  |
+|            | :func:`ascii`).                                     |       |
++------------+-----------------------------------------------------+-------+
 | ``'%'``    | No argument is converted, results in a ``'%'``      |       |
 |            | character in the result.                            |       |
 +------------+-----------------------------------------------------+-------+
@@ -1581,7 +1584,7 @@ Notes:
    decimal point and defaults to 6.
 
 (5)
-   The precision determines the maximal number of characters used.
+   If precision is ``N``, the output is truncated to ``N`` characters.
 
 
 (7)