]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#8691: document that right alignment is default for numbers.
authorGeorg Brandl <georg@python.org>
Mon, 7 Feb 2011 12:13:58 +0000 (12:13 +0000)
committerGeorg Brandl <georg@python.org>
Mon, 7 Feb 2011 12:13:58 +0000 (12:13 +0000)
Doc/ACKS.txt
Doc/library/string.rst

index c3ab2648859ad6c7f3db76922c9af4d256262267..bcf70b5ecb4ea3e8b303ff02127b6dd2cb5d5925 100644 (file)
@@ -130,6 +130,7 @@ docs@python.org), and we'll be glad to correct the problem.
    * Andrew MacIntyre
    * Vladimir Marangozov
    * Vincent Marchetti
+   * Westley Martínez
    * Laura Matson
    * Daniel May
    * Rebecca McCreary
index 4b6a6747a452aa886fa29789dd3b09c8e13ec5ea..d45eb36923903c2afed6cfe69b6089280a5ad0eb 100644 (file)
@@ -310,10 +310,10 @@ The meaning of the various alignment options is as follows:
    | Option  | Meaning                                                  |
    +=========+==========================================================+
    | ``'<'`` | Forces the field to be left-aligned within the available |
-   |         | space (this is the default).                             |
+   |         | space (this is the default for most objects).            |
    +---------+----------------------------------------------------------+
    | ``'>'`` | Forces the field to be right-aligned within the          |
-   |         | available space.                                         |
+   |         | available space (this is the default for numbers).       |
    +---------+----------------------------------------------------------+
    | ``'='`` | Forces the padding to be placed after the sign (if any)  |
    |         | but before the digits.  This is used for printing fields |